]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
dracut.sh: Support --mount with just mountpoint as parameter
authorFabian <fvogt@suse.com>
Fri, 11 Sep 2015 11:35:57 +0000 (13:35 +0200)
committerHarald Hoyer <harald@redhat.com>
Fri, 13 Nov 2015 12:21:43 +0000 (13:21 +0100)
Right now the --mount parameter of dracut expects a rather long fstab-like
line. This makes it possible to invoke dracut with e.g. --mount /boot.

dracut.8.asc
dracut.sh

index 5f45ed9b455d1437518b142d0fe069f911aab307..d22c1cb76ac9d82e6eac60f07227c406669a89fa 100644 (file)
@@ -338,6 +338,10 @@ provide a valid _/etc/fstab_.
     The default _<dump frequency>_ is "0".
     the default _<fsck order>_ is "2".
 
+**--mount** "_<mountpoint>_"::
+    Like above, but _<device>_, _<filesystem type>_ and _<filesystem options>_
+    are determined by looking at the current mounts.
+
 **--add-device** _<device>_ ::
     Bring up _<device>_ in initramfs, _<device>_ should be the device name.
     This can be useful in hostonly mode for resume support when your swap is on
index fb5d4006a502b82ef9b9e940d30cbe77f358c093..52a628ae389d9040e1efca4b93cb9fcc1276bd97 100755 (executable)
--- a/dracut.sh
+++ b/dracut.sh
@@ -160,6 +160,8 @@ Creates initial ramdisk images for preloading modules
   --mount "[DEV] [MP] [FSTYPE] [FSOPTS]"
                         Mount device [DEV] on mountpoint [MP] with filesystem
                         [FSTYPE] and options [FSOPTS] in the initramfs
+  --mount "[MP]"       Same as above, but [DEV], [FSTYPE] and [FSOPTS] are
+                       determined by looking at the current mounts.
   --add-device "[DEV]"  Bring up [DEV] in initramfs
   -i, --include [SOURCE] [TARGET]
                         Include the files in the SOURCE directory into the
@@ -1469,9 +1471,21 @@ if [[ $kernel_only != yes ]]; then
 
     for line in "${fstab_lines[@]}"; do
         line=($line)
-        [ -z "${line[3]}" ] && line[3]="defaults"
+
+        if [ -z "${line[1]}" ]; then
+            # Determine device and mount options from current system
+            mountpoint -q "${line[0]}" || derror "${line[0]} is not a mount point!"
+            line=($(findmnt --raw -n --target "${line[0]}" --output=source,target,fstype,options))
+            dinfo "Line for ${line[1]}: ${line[@]}"
+        else
+            # Use default options
+            [ -z "${line[3]}" ] && line[3]="defaults"
+        fi
+
+        # Default options for freq and passno
         [ -z "${line[4]}" ] && line[4]="0"
         [ -z "${line[5]}" ] && line[5]="2"
+
         strstr "${line[2]}" "nfs" && line[5]="0"
         echo "${line[@]}" >> "${initdir}/etc/fstab"
     done