diff --git a/archbootcd.conf b/archbootcd.conf index 2ac00960a..b165b509b 100644 --- a/archbootcd.conf +++ b/archbootcd.conf @@ -27,14 +27,14 @@ ISOLINUXCFG="/etc/archboot/etc/isolinux.cfg" MENULST="/etc/archboot/etc/menu.lst" # Prompt on CD boot, defaulted to yes, 1=yes 0=no -PROMPT="0" +PROMPT="1" # Name of the ISO, if empty Arch Linux is used if not set by a HOOK later ISONAME="" # Timeout in seconds on CD boot, defaulted to 30 to fix usb keyboard issues # 0 means wait for prompt -TIMEOUT="30" +TIMEOUT="300" # Setting cdrecord options DEVICE="/dev/cdrw" diff --git a/etc/securetty b/etc/securetty index ef975ca9a..768866917 100644 --- a/etc/securetty +++ b/etc/securetty @@ -7,6 +7,6 @@ vc/1 vc/2 vc/3 vc/4 -ttyS0 +tts/0 # End of file diff --git a/etc/udev.rules b/etc/udev.rules index 4d5b86d33..2132b1e9d 100644 --- a/etc/udev.rules +++ b/etc/udev.rules @@ -121,7 +121,7 @@ SUBSYSTEMS=="scsi", KERNEL=="sg[0-9]*", ATTRS{type}=="5", GROUP="optical" SUBSYSTEMS=="ide", KERNEL=="hd*", ATTRS{media}=="floppy*", NAME{all_partitions}="%k", GROUP="floppy" # permissions for removable devices like cardreaders or sticks -KERNEL=="sd*", ATTRS{scsi_level}=="3", ATTRS{type}=="0", GROUP="storage" +KERNEL=="sd*", ATTRS{scsi_level}=="0", ATTRS{type}=="0", GROUP="storage" # permissions for firewire external drives KERNEL=="sd*", ATTRS{scsi_level}=="5", GROUP="storage" diff --git a/hooks/arch-addons b/hooks/arch-addons index 6b46ff072..3aa27b1c2 100644 --- a/hooks/arch-addons +++ b/hooks/arch-addons @@ -3,8 +3,8 @@ run_hook () # fix depmod link ln -s /sbin/depmod /bin/depmod ARCH_ADDON="optical storage floppy disk" - echo " Waiting for usb/fw devices to come ready ..." - sleep 5 + echo " Waiting 10 seconds for usb/fw devices to come ready ..." + sleep 10 for i in $ARCH_ADDON; do echo "Checking $i devices for addons ..." for k in $(find /dev -maxdepth 1 -group "$i"); do