initrd.defaults: uniform quotes to double

master
Fabio Erculiani 11 years ago
parent 458ae15f08
commit 8091f7bc16

@ -48,41 +48,41 @@ KV=$(uname -r)
KMAJOR=$(echo $KV | cut -f1 -d.) KMAJOR=$(echo $KV | cut -f1 -d.)
KMINOR=$(echo $KV | cut -f2 -d.) KMINOR=$(echo $KV | cut -f2 -d.)
KVER="${KMAJOR}.${KMINOR}" KVER="${KMAJOR}.${KMINOR}"
MISCOPTS='debug detect' MISCOPTS="debug detect"
ROOT_LINKS='bin sbin lib lib32 lib64 boot usr opt emul' ROOT_LINKS="bin sbin lib lib32 lib64 boot usr opt emul"
ROOT_TREES='etc root home var' ROOT_TREES="etc root home var"
KSUFF='.ko' KSUFF=".ko"
# systemd-207 dropped /sbin/udevd # systemd-207 dropped /sbin/udevd
UDEVD='/sbin/udevd' UDEVD="/sbin/udevd"
[ ! -e "${UDEVD}" ] && UDEVD='/usr/lib/systemd/systemd-udevd' [ ! -e "${UDEVD}" ] && UDEVD="/usr/lib/systemd/systemd-udevd"
MDEVD='/sbin/mdev' MDEVD="/sbin/mdev"
INITRD_SPLASH='/etc/initrd.splash' INITRD_SPLASH="/etc/initrd.splash"
# latest plymouth ebuild in gentoo has it in /usr/bin # latest plymouth ebuild in gentoo has it in /usr/bin
PLYMOUTHD_BIN='/sbin/plymouthd' PLYMOUTHD_BIN="/sbin/plymouthd"
[ ! -e "${PLYMOUTHD_BIN}" ] && PLYMOUTHD_BIN='/usr/sbin/plymouthd' [ ! -e "${PLYMOUTHD_BIN}" ] && PLYMOUTHD_BIN="/usr/sbin/plymouthd"
PLYMOUTH_BIN='/bin/plymouth' PLYMOUTH_BIN="/bin/plymouth"
[ ! -e "${PLYMOUTH_BIN}" ] && PLYMOUTH_BIN='/usr/bin/plymouth' [ ! -e "${PLYMOUTH_BIN}" ] && PLYMOUTH_BIN="/usr/bin/plymouth"
REAL_ROOT='' REAL_ROOT=""
CONSOLE='/dev/console' CONSOLE="/dev/console"
NEW_ROOT='/newroot' NEW_ROOT="/newroot"
CDROOT='0' CDROOT="0"
CDROOT_DEV='' CDROOT_DEV=""
CDROOT_TYPE='auto' CDROOT_TYPE="auto"
CDROOT_PATH='/mnt/cdrom' CDROOT_PATH="/mnt/cdrom"
# This is the file that the cdroot will be checked for as a # This is the file that the cdroot will be checked for as a
# marker. It must exist RELATIVE to the cdroot. # marker. It must exist RELATIVE to the cdroot.
CDROOT_MARKER='/livecd' CDROOT_MARKER="/livecd"
LOOPS='/livecd.loop /zisofs /livecd.squashfs /image.squashfs /livecd.gcloop' LOOPS="/livecd.loop /zisofs /livecd.squashfs /image.squashfs /livecd.gcloop"
DEFAULT_NFSOPTIONS="ro,nolock,rsize=1024,wsize=1024" DEFAULT_NFSOPTIONS="ro,nolock,rsize=1024,wsize=1024"
# Only sections that are in by default or those that # Only sections that are in by default or those that
# are not module groups need to be defined here... # are not module groups need to be defined here...
HWOPTS='keymap cache modules pata sata scsi usb firewire waitscan lvm dmraid mdadm fs net virtio' HWOPTS="keymap cache modules pata sata scsi usb firewire waitscan lvm dmraid mdadm fs net virtio"
MY_HWOPTS='modules pata sata scsi usb firewire waitscan dmraid mdadm fs net iscsi crypto plymouth virtio' MY_HWOPTS="modules pata sata scsi usb firewire waitscan dmraid mdadm fs net iscsi crypto plymouth virtio"

Loading…
Cancel
Save