mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-23 07:22:53 +00:00
initfs: support for modloop boot option
This commit is contained in:
parent
7107c179aa
commit
83151c3bbb
@ -121,7 +121,12 @@ mount $mount_opts /dev/$ALPINE_DEV $ALPINE_MNT >/dev/null 2>&1
|
||||
eend $?
|
||||
ebegin "Mounting loopback device for kernel modules"
|
||||
modprobe loop
|
||||
mount -o loop,ro -t cramfs $ALPINE_MNT/$KOPT_BOOT_IMAGE.cmg /.modloop
|
||||
if [ -n "$KOPT_modloop" ]; then
|
||||
modloop=$KOPT_modloop
|
||||
else
|
||||
modloop=$KOPT_BOOT_IMAGE.cmg
|
||||
fi
|
||||
mount -o loop,ro -t cramfs $ALPINE_MNT/$modloop /.modloop
|
||||
rc=$?
|
||||
if [ "$rc" = 0 ]; then
|
||||
rm -rf /lib/modules
|
||||
|
Loading…
Reference in New Issue
Block a user