From f1e3b00216c354c9bce703d67334bfcef4bb153a Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Mon, 31 Aug 2009 19:40:34 -0400 Subject: Support rwtab and state passed from dracut initrd. --- rc.d/rc.sysinit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rc.d') diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index dd3c053e..4155c9f2 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -469,7 +469,7 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then mount -n -t tmpfs $RW_OPTIONS $mountopts none "$RW_MOUNT" fi - for file in /etc/rwtab /etc/rwtab.d/* ; do + for file in /etc/rwtab /etc/rwtab.d/* /dev/.initramfs/rwtab ; do is_ignored_file "$file" && continue [ -f $file ] && cat $file | while read type path ; do case "$type" in @@ -489,8 +489,8 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then done done - # Use resolv.conf passed by initramfs netboot - [ -f /dev/.initramfs/resolv.conf ] && cp /dev/.initramfs/resolv.conf /etc/ + # Use any state passed by initramfs + [ -d /dev/.initramfs/state ] && cp -a /dev/.initramfs/state/* $RW_MOUNT # In theory there should be no more than one network interface active # this early in the boot process -- the one we're booting from. -- cgit v1.2.1