summaryrefslogtreecommitdiff
path: root/dracut.8
AgeCommit message (Collapse)AuthorFilesLines
2009-09-29dracut.8: fixed ifname positionHarald Hoyer1-6/+5
2009-09-18lvm: add rd_NO_LVMCONFHarald Hoyer1-0/+3
2009-09-15Document that MAC addresses must be lowercaseHans de Goede1-1/+3
2009-09-15Document netroot=fcoe:....Hans de Goede1-0/+6
2009-09-15Add ifname= argument for persistent netdev namesHans de Goede1-0/+6
ifname=<interface>:<MAC> Assign network device name <interface> (ie eth0) to the NIC with MAC <MAC>. Note that if you use this option you *must* specify an ifname= argument for all interfaces used in ip= or fcoe= arguments
2009-09-15plymouth: add rd_NO_PLYMOUTHHarald Hoyer1-0/+5
2009-09-15mdraid: add rd_NO_MDADMCONF --mdadmconf --nomdadmconfHarald Hoyer1-0/+9
Copy /etc/mdadm.conf to initramfs (even for non-hostonly) if mdadmconf="yes" is set in dracut.conf or --mdadmconf is specified on the dracut command line. This was done, because there seems _no_ sane way to autoassemble md raid arrays. also moved rd_NO_MD to an udev ENV
2009-09-11plymouth: removed rd_plythemeHarald Hoyer1-5/+0
2009-09-09add parameter to specify additional kernel modules to includeHarald Hoyer1-1/+3
--add-drivers for dracut add_drivers for dracut.conf
2009-08-28dracut.8: document rootfstype and rootflagsHarald Hoyer1-1/+4
2009-08-14update the rdbreak breakpoint listMichael Ploujnikov1-1/+1
2009-08-14add rdinfo command line parameterHarald Hoyer1-0/+3
print informational output though "quiet" is set
2009-07-31dracut.8: fixed iscsi username/pw documentationHarald Hoyer1-2/+2
2009-07-31Implement extended iscsi: rfc4173 syntax which allows specifying credentialsHans de Goede1-5/+3
As discussed before, it would be nice to be able to specify the iscsi chap credentials inside the netroot=iscsi:..... syntax, this patch implements this in a backwards compatible way, like this: iscsi:username:pass@127.0.0.1::3260::iqn.2009-01.com.example:testdisk iscsi:username:pass:reverse:pass@127.0.0.1::3260::iqn.2009-01.com.example:test The only downside is that the backwards compatibility is broken when there is an @ in the iscsi target name (very unlikely), that can still be used, but only like this: iscsi:@192.168.1.100::3260::iqn.2009-01.com.example:testdi@sk
2009-07-25strip binaries in initramfsHarald Hoyer1-0/+6
--strip strip binaries in the initramfs (default) --nostrip do not strip binaries in the initramfs
2009-07-24dracut.8: correct manpage entry for ip=Harald Hoyer1-1/+1
2009-07-24dracut.8: corrections of parameters and fixed typosHarald Hoyer1-8/+11
2009-07-2295s390: add support to boot from s390 dasdsHarald Hoyer1-0/+5
command line parameter: DASD dasd=.... same syntax as the kernel module parameter (s390 only)
2009-07-22dracut: add --kernel-only and --no-kernel argumentsHarald Hoyer1-0/+6
--kernel-only only install kernel drivers and firmware files --no-kernel do not install kernel drivers and firmware files All kernel module related install commands moved from "install" to "installkernel". For "--kernel-only" all installkernel scripts of the specified modules are used, regardless of any checks, so that all modules which might be needed by any dracut generic image are in. The basic idea is to create two images. One image with the kernel modules and one without. So if the kernel changes, you only have to replace one image. Grub and the kernel can handle multiple images, so grub entry can look like this: title Fedora (2.6.29.5-191.fc11.i586) root (hd0,0) kernel /vmlinuz-2.6.29.5-191.fc11.i586 ro rhgb quiet initrd /initrd-20090722.img initrd /initrd-kernel-2.6.29.5-191.fc11.i586.img initrd /initrd-config.img initrd-20090722.img the image provided by the initrd rpm one old backup version is kept like with the kernel initrd-kernel-2.6.29.5-191.fc11.i586.img the image provided by the kernel rpm initrd-config.img optional image with local configuration files
2009-07-21add --fwdir parameter to dracutHarald Hoyer1-0/+3
--fwdir [DIR] specify additional directory, where to look for firmwares
2009-07-21dracut: add --kmoddir directory, where to look for kernel modulesHarald Hoyer1-0/+3
-k, --kmoddir [DIR] specify the directory, where to look for kernel modules
2009-07-17manpage: add docu for rd_NO_MDIMSMHarald Hoyer1-0/+3
2009-07-17plymouth: install all themes and make them selectable by command lineHarald Hoyer1-0/+5
Bootsplash - plymouth rd_plytheme=<theme name> specify the plymouth bootsplash theme (fallback is text)
2009-07-15install all /lib/kbd to initramfs, if not host onlyHarald Hoyer1-0/+21
KEYBOARDTYPE=sun|pc will be written to /etc/sysconfig/keyboard in the initramfs KEYTABLE=<keytable file> will be written to /etc/sysconfig/keyboard in the initramfs SYSFONT= Console font will be written to /etc/sysconfig/i18n in the initramfs SYSFONTACM= Console map. will be written to /etc/sysconfig/i18n in the initramfs UNIMAP= Unicode font map. will be written to /etc/sysconfig/i18n in the initramfs LANG=<locale> will be written to /etc/sysconfig/i18n in the initramfs LANG= set locale for all categories, can be any two letter ISO language code
2009-07-15add command line parameters to specify exact actions for root assemblyHarald Hoyer1-0/+32
LVM rd_NO_LVM disable LVM detection rd_LVM_VG=<volume group name> only activate the volume groups with the given name crypto LUKS rd_NO_LUKS disable crypto LUKS detection rd_LUKS_UUID=<luks uuid> only activate the LUKS partitions with the given UUID MD rd_NO_MD disable MD RAID detection rd_MD_UUID=<md uuid> only activate the raid sets with the given UUID DMRAID rd_NO_DM disable DM RAID detection rd_DM_UUID=<dmraid uuid> only activate the raid sets with the given UUID
2009-07-03rdshellHarald Hoyer1-0/+3
2009-07-02add "--add" option to the manpageHarald Hoyer1-0/+3
2009-07-02let iSCSI try to mount the complete LUN specifiedHarald Hoyer1-3/+0
2009-07-01man page updateHarald Hoyer1-9/+21
2009-06-19/usr/lib/dracut -> /usr/share/dracutHarald Hoyer1-2/+2
2009-06-19manpage iSCSI updateHarald Hoyer1-1/+9
2009-06-17rdblacklist is for kernel drivers, not dracut modules.Warren Togami1-2/+2
2009-06-17add more documentationHarald Hoyer1-0/+189