3838babf57
** Needed to add a couple more packages to CentOS's package list. ** Changed the PXE kickstart template to create a dedicated '/boot' partition (raw partition or on RAID 1). This seems to be required now on 8.1. ** Added PXE's UEFI support to the template system (untested, but it's at least generated now). * Filtered out 'debug' and 'verbose' options when configuring fence devices. * Added an internet test to tools/striker-manage-install-target and skipped attempting to download packages when there's no internet. Also made loading the host OS info into a small function. * Started creating the man pages. Signed-off-by: Madison Kelly <mkelly@alteeve.ca>
22 lines
681 B
Plaintext
22 lines
681 B
Plaintext
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
|
|
}
|