remove unneeded stuff
This commit is contained in:
parent
4e4ee2b76d
commit
3a9dd3216b
@ -1,4 +0,0 @@
|
|||||||
title Arch Linux (x86_64, UEFI)
|
|
||||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
|
|
||||||
initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
|
||||||
options archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID%
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
timeout 3
|
|
||||||
default 01-archiso-x86_64-linux.conf
|
|
||||||
@ -1,96 +0,0 @@
|
|||||||
# Load partition table and file system modules
|
|
||||||
insmod part_gpt
|
|
||||||
insmod part_msdos
|
|
||||||
insmod fat
|
|
||||||
insmod iso9660
|
|
||||||
insmod ntfs
|
|
||||||
insmod ntfscomp
|
|
||||||
insmod exfat
|
|
||||||
insmod udf
|
|
||||||
|
|
||||||
# Use graphics-mode output
|
|
||||||
if loadfont "${prefix}/fonts/unicode.pf2" ; then
|
|
||||||
insmod all_video
|
|
||||||
set gfxmode="auto"
|
|
||||||
terminal_input console
|
|
||||||
terminal_output console
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Enable serial console
|
|
||||||
insmod serial
|
|
||||||
insmod usbserial_common
|
|
||||||
insmod usbserial_ftdi
|
|
||||||
insmod usbserial_pl2303
|
|
||||||
insmod usbserial_usbdebug
|
|
||||||
if serial --unit=0 --speed=115200; then
|
|
||||||
terminal_input --append serial
|
|
||||||
terminal_output --append serial
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Get a human readable platform identifier
|
|
||||||
if [ "${grub_platform}" == 'efi' ]; then
|
|
||||||
archiso_platform='UEFI'
|
|
||||||
if [ "${grub_cpu}" == 'x86_64' ]; then
|
|
||||||
archiso_platform="x64 ${archiso_platform}"
|
|
||||||
elif [ "${grub_cpu}" == 'i386' ]; then
|
|
||||||
archiso_platform="IA32 ${archiso_platform}"
|
|
||||||
else
|
|
||||||
archiso_platform="${grub_cpu} ${archiso_platform}"
|
|
||||||
fi
|
|
||||||
elif [ "${grub_platform}" == 'pc' ]; then
|
|
||||||
archiso_platform='BIOS'
|
|
||||||
else
|
|
||||||
archiso_platform="${grub_cpu} ${grub_platform}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Set default menu entry
|
|
||||||
default=archlinux
|
|
||||||
timeout=15
|
|
||||||
timeout_style=menu
|
|
||||||
|
|
||||||
|
|
||||||
# Menu entries
|
|
||||||
|
|
||||||
menuentry "Arch Linux (%ARCH%, ${archiso_platform})" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' {
|
|
||||||
set gfxpayload=keep
|
|
||||||
linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID%
|
|
||||||
initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then
|
|
||||||
menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class gnu --class tool {
|
|
||||||
set gfxpayload=800x600,1024x768
|
|
||||||
linux /boot/memtest86+/memtest.efi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then
|
|
||||||
menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class gnu --class tool {
|
|
||||||
set gfxpayload=800x600,1024x768
|
|
||||||
linux /boot/memtest86+/memtest
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
if [ "${grub_platform}" == 'efi' ]; then
|
|
||||||
if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then
|
|
||||||
menuentry 'UEFI Shell' {
|
|
||||||
chainloader /shellx64.efi
|
|
||||||
}
|
|
||||||
elif [ "${grub_cpu}" == "i386" -a -f '/shellia32.efi' ]; then
|
|
||||||
menuentry 'UEFI Shell' {
|
|
||||||
chainloader /shellia32.efi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
|
|
||||||
fwsetup
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
menuentry 'System shutdown' --class shutdown --class poweroff {
|
|
||||||
echo 'System shutting down...'
|
|
||||||
halt
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'System restart' --class reboot --class restart {
|
|
||||||
echo 'System rebooting...'
|
|
||||||
reboot
|
|
||||||
}
|
|
||||||
@ -1,73 +0,0 @@
|
|||||||
# https://www.supergrubdisk.org/wiki/Loopback.cfg
|
|
||||||
|
|
||||||
# Search for the ISO volume
|
|
||||||
search --no-floppy --set=archiso_img_dev --file "${iso_path}"
|
|
||||||
probe --set archiso_img_dev_uuid --fs-uuid "${archiso_img_dev}"
|
|
||||||
|
|
||||||
# Get a human readable platform identifier
|
|
||||||
if [ "${grub_platform}" == 'efi' ]; then
|
|
||||||
archiso_platform='UEFI'
|
|
||||||
if [ "${grub_cpu}" == 'x86_64' ]; then
|
|
||||||
archiso_platform="x64 ${archiso_platform}"
|
|
||||||
elif [ "${grub_cpu}" == 'i386' ]; then
|
|
||||||
archiso_platform="IA32 ${archiso_platform}"
|
|
||||||
else
|
|
||||||
archiso_platform="${grub_cpu} ${archiso_platform}"
|
|
||||||
fi
|
|
||||||
elif [ "${grub_platform}" == 'pc' ]; then
|
|
||||||
archiso_platform='BIOS'
|
|
||||||
else
|
|
||||||
archiso_platform="${grub_cpu} ${grub_platform}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Set default menu entry
|
|
||||||
default=archlinux
|
|
||||||
timeout=15
|
|
||||||
timeout_style=menu
|
|
||||||
|
|
||||||
|
|
||||||
# Menu entries
|
|
||||||
|
|
||||||
menuentry "Arch Linux (%ARCH%, ${archiso_platform})" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' {
|
|
||||||
set gfxpayload=keep
|
|
||||||
linux /%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux archisobasedir=%INSTALL_DIR% img_dev=UUID=${archiso_img_dev_uuid} img_loop="${iso_path}"
|
|
||||||
initrd /%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "${grub_platform}" == 'efi' -a "${grub_cpu}" == 'x86_64' -a -f '/boot/memtest86+/memtest.efi' ]; then
|
|
||||||
menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class gnu --class tool {
|
|
||||||
set gfxpayload=800x600,1024x768
|
|
||||||
linux /boot/memtest86+/memtest.efi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
if [ "${grub_platform}" == 'pc' -a -f '/boot/memtest86+/memtest' ]; then
|
|
||||||
menuentry 'Run Memtest86+ (RAM test)' --class memtest86 --class gnu --class tool {
|
|
||||||
set gfxpayload=800x600,1024x768
|
|
||||||
linux /boot/memtest86+/memtest
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
if [ "${grub_platform}" == 'efi' ]; then
|
|
||||||
if [ "${grub_cpu}" == 'x86_64' -a -f '/shellx64.efi' ]; then
|
|
||||||
menuentry 'UEFI Shell' {
|
|
||||||
chainloader /shellx64.efi
|
|
||||||
}
|
|
||||||
elif [ "${grub_cpu}" == "i386" -a -f '/shellia32.efi' ]; then
|
|
||||||
menuentry 'UEFI Shell' {
|
|
||||||
chainloader /shellia32.efi
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
|
|
||||||
fwsetup
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
menuentry 'System shutdown' --class shutdown --class poweroff {
|
|
||||||
echo 'System shutting down...'
|
|
||||||
halt
|
|
||||||
}
|
|
||||||
|
|
||||||
menuentry 'System restart' --class reboot --class restart {
|
|
||||||
echo 'System rebooting...'
|
|
||||||
reboot
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user