~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch

[alpine-devel] [PATCH] init: make init a /proc/cmdline option

Jesse Young <jlyo@jlyo.org>
Details
Message ID
<1440868402-30501-1-git-send-email-jlyo@jlyo.org>
Sender timestamp
1440868402
DKIM signature
missing
Download raw message
Patch: +6 -6
---
 initramfs-init.in | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/initramfs-init.in b/initramfs-init.in
index 934fe92..aa68db5 100755
--- a/initramfs-init.in
+++ b/initramfs-init.in
@@ -386,8 +386,8 @@ find_boot_repositories() {
set -- $(cat /proc/cmdline)

myopts="alpine_dev autodetect autoraid chart cryptroot cryptdm debug_init
	dma init_args keep_apk_new modules ovl_dev pkgs quiet root_size root
	usbdelay ip alpine_repo apkovl alpine_start splash blacklist
	dma init init_args keep_apk_new modules ovl_dev pkgs quiet root_size
	root usbdelay ip alpine_repo apkovl alpine_start splash blacklist
	overlaytmpfs rootfstype rootflags"

for opt; do
@@ -566,7 +566,7 @@ if [ -n "$KOPT_root" ]; then
		fi
	done
	sync
	exec /bin/busybox switch_root $sysroot $chart_init /sbin/init $KOPT_init_args
	exec /bin/busybox switch_root $sysroot $chart_init ${KOPT_init:-/sbin/init} $KOPT_init_args
	echo "initramfs emergency recovery shell launched"
	exec /bin/busybox sh
fi
@@ -825,9 +825,9 @@ if [ "$KOPT_chart" = yes ]; then
	chart_init="/sbin/bootchartd start-rootfs"
fi

if [ ! -x $sysroot/sbin/init ]; then
if [ ! -x "${sysroot}${KOPT_init:-/sbin/init}" ]; then
	[ "$KOPT_splash" != "no" ] && echo exit > $sysroot/$splashfile
	echo "/sbin/init not found in new root. Launching emergency recovery shell"
	echo "${KOPT_init:-/sbin/init} not found in new root. Launching emergency recovery shell"
	echo "Type exit to continue boot."
	/bin/busybox sh
fi
@@ -843,7 +843,7 @@ sync

[ "$KOPT_splash" = "init" ] && echo exit > $sysroot/$splashfile
echo ""
exec /bin/busybox switch_root $sysroot $chart_init /sbin/init $KOPT_init_args
exec /bin/busybox switch_root $sysroot $chart_init ${KOPT_init:-/sbin/init} $KOPT_init_args

[ "$KOPT_splash" != "no" ] && echo exit > $sysroot/$splashfile
echo "initramfs emergency recovery shell launched"
-- 
2.5.0



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)