diff options
author | Sven Gothel <[email protected]> | 2021-07-03 04:47:17 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-07-03 04:47:17 +0200 |
commit | 0d38454e32d0129339b4368c1713c1022f0bf87e (patch) | |
tree | 1609d25af11712bc472a4f66559c6f7d8cc0c3b4 /stage2 | |
parent | 24b027b387b7ab49ab0994c69354a4e7669c7a68 (diff) |
initrd loop_rootfs: Add comment on 'debug' commandline argument, remove manual panic debug
Diffstat (limited to 'stage2')
-rwxr-xr-x | stage2/01-sys-tweaks/files/initramfs/loop_rootfs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/stage2/01-sys-tweaks/files/initramfs/loop_rootfs b/stage2/01-sys-tweaks/files/initramfs/loop_rootfs index cd986ff..d6ed109 100755 --- a/stage2/01-sys-tweaks/files/initramfs/loop_rootfs +++ b/stage2/01-sys-tweaks/files/initramfs/loop_rootfs @@ -14,6 +14,11 @@ case ${1} in ;; esac +# +# If 'debug' has been passed via the boot cmdline, +# logoutput will be made available to '/run/initramfs/initramfs.debug'. +# + . /scripts/functions readonly BOOT_PART="/dev/mmcblk0p1" @@ -231,8 +236,6 @@ fi log_success_msg "loop_rootfs attached ${OS_PREFIX}, ${ROOTFSTYPE} file ${IMAGE_FILE} to loop-device ${ROOT}." -panic "loop_rootfs debug break point." - log_end_msg exit 0 |