root option parsing belongs in 99base now
We use this for NFS root as well, and NFSv4 was getting broken when it wasn't present.master
parent
35b709957f
commit
a2810bf24a
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
inst_hook cmdline 10 "$moddir/parse-root-opts.sh"
|
|
||||||
inst_hook cmdline 95 "$moddir/parse-block.sh"
|
inst_hook cmdline 95 "$moddir/parse-block.sh"
|
||||||
inst_hook pre-udev 30 "$moddir/block-genrules.sh"
|
inst_hook pre-udev 30 "$moddir/block-genrules.sh"
|
||||||
inst_hook mount 99 "$moddir/mount-root.sh"
|
inst_hook mount 99 "$moddir/mount-root.sh"
|
||||||
|
|
|
@ -14,4 +14,5 @@ else
|
||||||
inst "$moddir/switch_root" "/sbin/switch_root"
|
inst "$moddir/switch_root" "/sbin/switch_root"
|
||||||
fi
|
fi
|
||||||
inst "$moddir/dracut-lib" "/lib/dracut-lib"
|
inst "$moddir/dracut-lib" "/lib/dracut-lib"
|
||||||
|
inst_hook cmdline 10 "$moddir/parse-root-opts.sh"
|
||||||
inst_hook pre-pivot 50 "$moddir/selinux-loadpolicy.sh"
|
inst_hook pre-pivot 50 "$moddir/selinux-loadpolicy.sh"
|
||||||
|
|
Loading…
Reference in New Issue