[make-initrd] [PATCH v6 21/22] bootchain-core: adds ability to bring the daemon to the foreground
Антон Мидюков
antohami at basealt.ru
Sat Nov 6 18:54:36 MSK 2021
06.11.2021 22:47, Leonid Krivoshein пишет:
>
>
> 06.11.2021 18:33, Alexey Gladkov пишет:
>> On Sat, Nov 06, 2021 at 10:26:52PM +0700, Антон Мидюков wrote:
>>>>> Для того, чтобы собрать с kbd, нужно в STAGE1 добавить пакеты kbd и dialog.
>>>>> Проблема в другом. При сборке initrd с plymouth и kbd не запускается chaind.
>>>>> До его запуска процесс загрузки не доходит. Та же проблема и с pipeline была
>>>>> изначально, когда я делал первую попытку сборки iso с pipeline вместо propagator.
>>>> Правильно ли я понял, что если собрать образ с kbd и pipeline, то
>>>> pipelined не загрузится ?
>>>>
>>> Нет. Нужно с pipeline, kbd и plymouth.
>> Ясно. Я посмотрю почему такое происходит.
>
> У меня другое. После небольшого изменения в m-p (добавил только kbd):
>
> diff --git a/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain b/features.in/initrd-bootchain/stage1/scripts.d/8
> index cef4f98e..3b04264c 100755
> --- a/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain
> +++ b/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain
> @@ -25,6 +25,7 @@ FEATURES += bootchain-waitdev
> FEATURES += bootchain-getimage
> FEATURES += bootchain-nfs
> FEATURES += bootchain-cifs
> +FEATURES += kbd
> PUT_UDEV_RULES += *-net-setup-link.rules *-net-description.rules
> PUT_FILES += /lib/systemd/network/99-default.link
> EOF
>
> ...образы перестали собираться. Ошибка где-то тут:
>
> create-initrd: Not found utility: kbd_mode
>
Нет. Тоже самое. После добавления в STAGE1_PACKAGES пакета kbd сборка пойдёт дальше и сломается на остутствии команды dialog.
После добавления dialog будет собираться, как без plymouth, так и с plymouth.
И образ без plymouth будет успешно грузиться.
Патч такой для m-p:
diff --git a/features.in/initrd-bootchain/config.mk b/features.in/initrd-bootchain/config.mk
index d5bdeda608..775599896b 100644
--- a/features.in/initrd-bootchain/config.mk
+++ b/features.in/initrd-bootchain/config.mk
@@ -2,6 +2,7 @@ use/initrd-bootchain: use/uuid-iso
@$(call add_feature)
@$(call set,STAGE1_INITRD,initrd-bootchain)
@$(call set,STAGE1_PACKAGES,make-initrd-bootchain)
+ @$(call set,STAGE1_PACKAGES,kbd dialog)
@$(call set,STAGE1_INITRD_TYPEARGS,$(shell echo "root=bootchain bootchain=fg,altboot automatic"))
@$(call set,STAGE1_INITRD_BOOTMETHOD,$(shell echo "method:cdrom,uuid:$(UUID_ISO)"))
@$(call set,STAGE1_INITRD_STAGE2_OPTION,stagename)
diff --git a/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain b/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain
index cef4f98edf..33e754825f 100755
--- a/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain
+++ b/features.in/initrd-bootchain/stage1/scripts.d/80-make-initrd-for-bootchain
@@ -18,7 +18,7 @@ done
fatal "kernel modules set not found"
cat >> /etc/initrd.mk <<EOF
-FEATURES += add-modules compress cleanup rdshell
+FEATURES += add-modules compress cleanup rdshell kbd
FEATURES += bootchain-localdev
FEATURES += bootchain-liverw
FEATURES += bootchain-waitdev
--
С уважением, Антон Мидюков <antohami at basealt.ru>
More information about the Make-initrd
mailing list