fix:修改busybox编译选项,启用busybox作为初始引导程序以及shell程序 (#1161)

This commit is contained in:
火花
2025-05-10 20:56:36 +08:00
committed by GitHub
parent d3ae9c7c4a
commit 0bc74e16e0
3 changed files with 5 additions and 10 deletions

View File

@ -171,8 +171,8 @@ while true;do
setup_kernel_init_program() {
if [ ${ARCH} == "x86_64" ]; then
# KERNEL_CMDLINE+=" init=/bin/busybox init "
KERNEL_CMDLINE+=" init=/bin/dragonreach "
KERNEL_CMDLINE+=" init=/bin/busybox init "
# KERNEL_CMDLINE+=" init=/bin/dragonreach "
elif [ ${ARCH} == "riscv64" ]; then
KERNEL_CMDLINE+=" init=/bin/riscv_rust_init "
fi