You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
681 B
21 lines
681 B
function load_video { |
|
insmod efi_gop |
|
insmod efi_uga |
|
insmod video_bochs |
|
insmod video_cirrus |
|
insmod all_video |
|
} |
|
|
|
load_video |
|
set gfxpayload=keep |
|
insmod gzio |
|
|
|
menuentry 'Install RHEL 8' --class rhel --class gnu-linux --class gnu --class os { |
|
linuxefi rhel8/vmlinuz ip=dhcp inst.repo=http://10.1.4.1/rhel8/x86_64/iso/ |
|
initrdefi rhel8/initrd.img |
|
} |
|
|
|
menuentry 'Install Striker' --class rhel --class gnu-linux --class gnu --class os { |
|
linuxefi rhel8/vmlinuz ip=dhcp inst.repo=http://10.1.4.1/rhel8/x86_64/iso/ root=live:http://10.1.4.1/rhel8/x86_64/os/images/install.img inst.ks=http://10.1.4.1/rhel8/x86_64/kickstart/striker.ks inst.sshd rd.debug |
|
initrdefi rhel8/initrd.img |
|
}
|
|
|