Updated Deb Arm
Verbiage needed to be changed to Debian Signed-off-by: debianpepper <peppermintosteam@proton.me>
This commit is contained in:
parent
2e41c944ae
commit
9e856bd316
|
@ -24,11 +24,11 @@ fi
|
||||||
source /boot/grub/config.cfg
|
source /boot/grub/config.cfg
|
||||||
|
|
||||||
# Live boot
|
# Live boot
|
||||||
menuentry "PeppermintOS Devuan - Live" --hotkey=l {
|
menuentry "PeppermintOS Debian - Live" --hotkey=l {
|
||||||
linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path}
|
linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path}
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
submenu "PeppermintOS Devuan - Live with Localisation Support" {
|
submenu "PeppermintOS Debian - Live with Localisation Support" {
|
||||||
menuentry "Albanian (sq)" {
|
menuentry "Albanian (sq)" {
|
||||||
linux /live/vmlinuz boot=live components locales=sq_AL.UTF-8 keyboard-layouts=sq quiet splash
|
linux /live/vmlinuz boot=live components locales=sq_AL.UTF-8 keyboard-layouts=sq quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
|
@ -330,107 +330,107 @@ menuentry "Welsh (cy)" {
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
### Commented out till Persistence is working as expected.
|
### Commented out till Persistence is working as expected.
|
||||||
#menuentry "Persistent PeppermintOS" --hotkey=p {
|
#menuentry "Persistent PeppermintOS" --hotkey=p {
|
||||||
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} persistence
|
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} persistence
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
#}
|
#}
|
||||||
|
|
||||||
### Commented out till toram is working as expected.
|
### Commented out till toram is working as expected.
|
||||||
#menuentry "PeppermintOS - loaded to RAM" --hotkey=t {
|
#menuentry "PeppermintOS - loaded to RAM" --hotkey=t {
|
||||||
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} toram
|
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} toram
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
#}
|
#}
|
||||||
#menuentry "Developer Desktop" --hotkey=d {
|
#menuentry "Developer Desktop" --hotkey=d {
|
||||||
# linux /live/vmlinuz boot=local ro root=/dev/sdb126 quiet splash findiso=${iso_path}
|
# linux /live/vmlinuz boot=local ro root=/dev/sdb126 quiet splash findiso=${iso_path}
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
#}
|
#}
|
||||||
|
|
||||||
# You can add more entries like this
|
# You can add more entries like this
|
||||||
#menuentry "Alternate live boot" {
|
#menuentry "Alternate live boot" {
|
||||||
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} custom options here
|
# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} custom options here
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
#}
|
#}
|
||||||
#menuentry "Alternate graphical installer" {
|
#menuentry "Alternate graphical installer" {
|
||||||
# linux custom options here
|
# linux custom options here
|
||||||
# initrd
|
# initrd
|
||||||
#}
|
#}
|
||||||
#menuentry "Alternate textual installer" {
|
#menuentry "Alternate textual installer" {
|
||||||
# linux custom options here
|
# linux custom options here
|
||||||
# initrd
|
# initrd
|
||||||
#}
|
#}
|
||||||
|
|
||||||
# Installer (if any)
|
# Installer (if any)
|
||||||
if false; then
|
if false; then
|
||||||
|
|
||||||
source /boot/grub/install_start.cfg
|
source /boot/grub/install_start.cfg
|
||||||
|
|
||||||
submenu 'Advanced install options ...' --hotkey=a {
|
submenu 'Advanced install options ...' --hotkey=a {
|
||||||
|
|
||||||
source /boot/grub/theme.cfg
|
source /boot/grub/theme.cfg
|
||||||
|
|
||||||
source /boot/grub/install.cfg
|
source /boot/grub/install.cfg
|
||||||
|
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
submenu ' Utilities ...' --hotkey=u {
|
submenu ' Utilities ...' --hotkey=u {
|
||||||
|
|
||||||
source /boot/grub/theme.cfg
|
source /boot/grub/theme.cfg
|
||||||
|
|
||||||
menuentry "PeppermintOS Devuan (fail-safe mode)" --hotkey=s {
|
menuentry "PeppermintOS Debian (fail-safe mode)" --hotkey=s {
|
||||||
linux /live/vmlinuz boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788
|
linux /live/vmlinuz boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
# Memtest (if any)
|
# Memtest (if any)
|
||||||
|
|
||||||
if [ "${grub_platform}" = "pc" ] -a false; then
|
if [ "${grub_platform}" = "pc" ] -a false; then
|
||||||
source /boot/grub/memtest.cfg
|
source /boot/grub/memtest.cfg
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Firmware setup (UEFI)
|
# Firmware setup (UEFI)
|
||||||
if [ "${grub_platform}" = "efi" ]; then
|
if [ "${grub_platform}" = "efi" ]; then
|
||||||
menuentry "UEFI Firmware Settings" {
|
menuentry "UEFI Firmware Settings" {
|
||||||
fwsetup
|
fwsetup
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
submenu ' Recovery ...' --hotkey=r {
|
submenu ' Recovery ...' --hotkey=r {
|
||||||
|
|
||||||
source /boot/grub/theme.cfg
|
source /boot/grub/theme.cfg
|
||||||
|
|
||||||
menuentry "PeppermintOS Devuan on sda2" {
|
menuentry "PeppermintOS Debian on sda2" {
|
||||||
linux /live/vmlinuz ro boot=local root=/dev/sda2 quiet splash
|
linux /live/vmlinuz ro boot=local root=/dev/sda2 quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
menuentry "PeppermintOS Devuan on sda3" {
|
menuentry "PeppermintOS Debian on sda3" {
|
||||||
linux /live/vmlinuz ro boot=local root=/dev/sda3 quiet splash
|
linux /live/vmlinuz ro boot=local root=/dev/sda3 quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
menuentry "PeppermintOS Devuan on mmcblk0p2" {
|
menuentry "PeppermintOS Debian on mmcblk0p2" {
|
||||||
linux /live/vmlinuz ro boot=local root=/dev/mmcblk0p2 quiet splash
|
linux /live/vmlinuz ro boot=local root=/dev/mmcblk0p2 quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
menuentry "PeppermintOS Devuan on mmcblk0p3" {
|
menuentry "PeppermintOS Debian on mmcblk0p3" {
|
||||||
linux /live/vmlinuz ro boot=local root=/dev/mmcblk0p3 quiet splash
|
linux /live/vmlinuz ro boot=local root=/dev/mmcblk0p3 quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
menuentry "PeppermintOS Devuan on nvme0n1p2" {
|
menuentry "PeppermintOS Debian on nvme0n1p2" {
|
||||||
linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p2 quiet splash
|
linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p2 quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
menuentry "PeppermintOS Devuan on nvme0n1p3" {
|
menuentry "PeppermintOS Debian on nvme0n1p3" {
|
||||||
linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p3 quiet splash
|
linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p3 quiet splash
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
}
|
}
|
||||||
#menuentry "PeppermintOS Devuan on nvme0n1p4" {
|
#menuentry "PeppermintOS Debian on nvme0n1p4" {
|
||||||
# linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p4 quiet splash
|
# linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p4 quiet splash
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
#}
|
#}
|
||||||
#menuentry "PeppermintOS Devuan on nvme0n1p5" {
|
#menuentry "PeppermintOS Debian on nvme0n1p5" {
|
||||||
# linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p5 quiet splash
|
# linux /live/vmlinuz ro boot=local root=/dev/nvme0n1p5 quiet splash
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
#}
|
#}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
### ISOLINUX config for Live-Session
|
### ISOLINUX config for Live-Session
|
||||||
#timeout 200
|
#timeout 200
|
||||||
#ontimeout live
|
#ontimeout live
|
||||||
menu title PeppermintOS Devuan - Live
|
menu title PeppermintOS Debian - Live
|
||||||
|
|
||||||
default live
|
default live
|
||||||
|
|
||||||
label live
|
label live
|
||||||
menu label ^PeppermintOS Devuan (Arm64)
|
menu label ^PeppermintOS Debian (Arm64)
|
||||||
linux /live/vmlinuz
|
linux /live/vmlinuz
|
||||||
initrd /live/initrd.img
|
initrd /live/initrd.img
|
||||||
append boot=live components quiet splash
|
append boot=live components quiet splash
|
||||||
|
|
||||||
MENU begin advanced
|
MENU begin advanced
|
||||||
MENU title PeppermintOS Devuan with Localisation Support
|
MENU title PeppermintOS Debian with Localisation Support
|
||||||
LABEL Albanian (sq)
|
LABEL Albanian (sq)
|
||||||
say "Booting Albanian (sq)..."
|
say "Booting Albanian (sq)..."
|
||||||
linux /live/vmlinuz
|
linux /live/vmlinuz
|
||||||
|
@ -391,42 +391,42 @@ LABEL Welsh (cy)
|
||||||
LABEL mainmenu
|
LABEL mainmenu
|
||||||
MENU label Back
|
MENU label Back
|
||||||
MENU exit
|
MENU exit
|
||||||
MENU end
|
MENU end
|
||||||
|
|
||||||
|
|
||||||
### Until this isn't UNPLEASANT, it stays commented in Beta releases.
|
### Until this isn't UNPLEASANT, it stays commented in Beta releases.
|
||||||
#label persistent
|
#label persistent
|
||||||
# menu label ^Persistent PeppermintOS Devuan (Arm64)
|
# menu label ^Persistent PeppermintOS Debian (Arm64)
|
||||||
# linux /live/vmlinuz
|
# linux /live/vmlinuz
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
# append boot=live components quiet splash persistence
|
# append boot=live components quiet splash persistence
|
||||||
|
|
||||||
#label toram
|
#label toram
|
||||||
# menu label ^PeppermintOS Devuan loaded in RAM
|
# menu label ^PeppermintOS Debian loaded in RAM
|
||||||
# linux /live/vmlinuz
|
# linux /live/vmlinuz
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
# append boot=live components quiet splash toram
|
# append boot=live components quiet splash toram
|
||||||
|
|
||||||
#label developer
|
#label developer
|
||||||
# menu label ^Boot to Developer Desktop
|
# menu label ^Boot to Developer Desktop
|
||||||
# linux /live/vmlinuz
|
# linux /live/vmlinuz
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
# append boot=local ro root=/dev/sdb126 quiet splash
|
# append boot=local ro root=/dev/sdb126 quiet splash
|
||||||
|
|
||||||
#### ### ## # This line is intentionaly left blank. # ## ### ####
|
#### ### ## # This line is intentionaly left blank. # ## ### ####
|
||||||
### By following the constucts above, We can add additional entries
|
### By following the constucts above, We can add additional entries
|
||||||
#label Alternative boot
|
#label Alternative boot
|
||||||
# menu label ^Alternative PeppermintOS Devuan (Arm64)
|
# menu label ^Alternative PeppermintOS Debian (Arm64)
|
||||||
# linux /live/vmlinuz
|
# linux /live/vmlinuz
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
# append boot=live components quiet splash persistence
|
# append boot=live components quiet splash persistence
|
||||||
# say Now booting alternative method
|
# say Now booting alternative method
|
||||||
#### ### ## # This line is intentionaly left blank. # ## ### ####
|
#### ### ## # This line is intentionaly left blank. # ## ### ####
|
||||||
### By following the constucts above, We can add additional entries
|
### By following the constucts above, We can add additional entries
|
||||||
#label Alternative boot
|
#label Alternative boot
|
||||||
# menu label ^Alternative PeppermintOS Devuan (Arm64)
|
# menu label ^Alternative PeppermintOS Debian (Arm64)
|
||||||
# linux /live/vmlinuz
|
# linux /live/vmlinuz
|
||||||
# initrd /live/initrd.img
|
# initrd /live/initrd.img
|
||||||
# append boot=live components quiet splash persistence
|
# append boot=live components quiet splash persistence
|
||||||
# say Now booting alternative method
|
# say Now booting alternative method
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue