Skip to content

Commit

Permalink
new options for booting via dracut
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lange committed Apr 7, 2015
1 parent 272861a commit 26ce11f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions conf/grub.cfg
Expand Up @@ -52,31 +52,31 @@ menuentry "+------------------------------------------------------+" {

menuentry "Fully Automatic Installation - demohost (user: grub pw: installme)" --users "grub" {
set gfxpayload=$resolution
linux /boot/vmlinuz boot=live FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=demohost FAI_CONFIG_SRC=file:///var/lib/fai/config
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=demohost FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp
initrd /boot/initrd.img
}

menuentry "Fully Automatic Installation with XFCE (user: grub pw: installme)" --users "grub" {
set gfxpayload=$resolution
linux /boot/vmlinuz boot=live FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=xfcehost FAI_CONFIG_SRC=file:///var/lib/fai/config
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=xfcehost FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp
initrd /boot/initrd.img
}

menuentry "Fully Automatic Installation with GNOME (user: grub pw: installme)" --users "grub" {
set gfxpayload=$resolution
linux /boot/vmlinuz boot=live FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=gnomehost FAI_CONFIG_SRC=file:///var/lib/fai/config
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=gnomehost FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp
initrd /boot/initrd.img
}

menuentry "Fully Automatic Installation - faiserver (user: grub pw: installme)" --users "grub" {
set gfxpayload=$resolution
linux /boot/vmlinuz boot=live FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=faiserver FAI_CONFIG_SRC=file:///var/lib/fai/config
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=install hostname=faiserver FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp
initrd /boot/initrd.img
}

menuentry "FAI rescue system, no installation" {
set gfxpayload=$resolution
linux /boot/vmlinuz boot=live FAI_FLAGS="verbose,createvt" FAI_ACTION=sysinfo hostname=demohost FAI_CONFIG_SRC=file:///var/lib/fai/config
linux /boot/vmlinuz FAI_FLAGS="verbose,createvt" FAI_ACTION=sysinfo hostname=demohost FAI_CONFIG_SRC=file:///var/lib/fai/config rd.live.image root=live:CDLABEL=FAI_CD rd.neednet ip=dhcp
initrd /boot/initrd.img
}

Expand Down

0 comments on commit 26ce11f

Please sign in to comment.