Browse Source

dmsquash-live-root cleanups/mini-fixes

- use last ro/rw cmdline arg rather than favoring 'rw' over 'ro'
- don't bother with useless RES variable for holding $?
- only do fs check when $livedev is a block device

Signed-off-by: Will Woods <wwoods@redhat.com>
master
Will Woods 14 years ago committed by Harald Hoyer
parent
commit
48205bb064
  1. 12
      modules.d/90dmsquash-live/dmsquash-live-root

12
modules.d/90dmsquash-live/dmsquash-live-root

@ -25,7 +25,8 @@ getargbool 0 rd.live.overlay.reset -y reset_overlay && reset_overlay="yes"
getargbool 0 rd.live.overlay.readonly -y readonly_overlay && readonly_overlay="--readonly" || readonly_overlay="" getargbool 0 rd.live.overlay.readonly -y readonly_overlay && readonly_overlay="--readonly" || readonly_overlay=""
overlay=$(getarg rd.live.overlay overlay) overlay=$(getarg rd.live.overlay overlay)


[ -e $livedev ] && fs=$(blkid -s TYPE -o value $livedev) # CD/DVD media check
[ -b $livedev ] && fs=$(blkid -s TYPE -o value $livedev)
if [ "$fs" = "iso9660" -o "$fs" = "udf" ]; then if [ "$fs" = "iso9660" -o "$fs" = "udf" ]; then
check="yes" check="yes"
fi fi
@ -40,9 +41,7 @@ if [ -n "$check" ]; then
[ -x /bin/plymouth ] && /bin/plymouth --show-splash [ -x /bin/plymouth ] && /bin/plymouth --show-splash
fi fi


getarg ro && liverw=ro for arg in $CMDLINE; do case $arg in ro|rw) liverw=$arg ;; esac; done
getarg rw && liverw=rw
[ -z "$liverw" ] && liverw=ro
# mount the backing of the live image first # mount the backing of the live image first
mkdir -m 0755 -p /run/initramfs/live mkdir -m 0755 -p /run/initramfs/live
if [ -f $livedev ]; then if [ -f $livedev ]; then
@ -52,9 +51,8 @@ if [ -f $livedev ]; then
*ext3fs.img|*rootfs.img) FSIMG=$livedev ;; *ext3fs.img|*rootfs.img) FSIMG=$livedev ;;
esac esac
else else
mount -n -t $fstype -o $liverw $livedev /run/initramfs/live mount -n -t $fstype -o ${liverw:-ro} $livedev /run/initramfs/live
RES=$? if [ "$?" != "0" ]; then
if [ "$RES" != "0" ]; then
die "Failed to mount block device of live image" die "Failed to mount block device of live image"
exit 1 exit 1
fi fi

Loading…
Cancel
Save