ascii.devuan-minimal-live: Indentation fixes

This commit is contained in:
parazyd 2020-11-13 13:55:49 +01:00
parent 964181b57d
commit 830e8525ca
No known key found for this signature in database
GPG Key ID: 6B636BF0493EE747
1 changed files with 28 additions and 28 deletions

View File

@ -48,7 +48,7 @@ blend_postinst() {
notice "executing $blend_name postinst"
# [[ "$mkefi" = "yes" ]] && {
# [[ -n "$MKEFI" ]] && {
# iso_make_efi
# iso_write_grub_cfg
# }
@ -192,15 +192,15 @@ iso_write_grub_cfg() {
# Do the main grub.cfg (which gets loaded last):
cat <<EOF | sudo tee ${workdir}/binary/boot/grub/grub.cfg
if loadfont $prefix/font.pf2 ; then
set gfxmode=640x480
insmod efi_gop
insmod efi_uga
insmod video_bochs
insmod video_cirrus
insmod gfxterm
insmod jpeg
insmod png
terminal_output gfxterm
set gfxmode=640x480
insmod efi_gop
insmod efi_uga
insmod video_bochs
insmod video_cirrus
insmod gfxterm
insmod jpeg
insmod png
terminal_output gfxterm
fi
background_image /boot/grub/splash.png
@ -209,9 +209,9 @@ set menu_color_highlight=dark-gray/white
set timeout=6
menuentry "${os}-live (${arch})" {
set gfxpayload=keep
linux /live/vmlinuz boot=live username=$username
initrd /live/initrd.img
set gfxpayload=keep
linux /live/vmlinuz boot=live username=$username
initrd /live/initrd.img
}
menuentry "Other language" {
@ -221,15 +221,15 @@ menuentry "Other language" {
}
menuentry "${os}-live (load to RAM)" {
set gfxpayload=keep
linux /live/vmlinuz boot=live username=$username toram
initrd /live/initrd.img
set gfxpayload=keep
linux /live/vmlinuz boot=live username=$username toram
initrd /live/initrd.img
}
menuentry "${os}-live (failsafe)" {
set gfxpayload=keep
linux /live/vmlinuz boot=live username=$username noapic noapm nodma nomce nolapic nosmp vga=normal
initrd /live/initrd.img
set gfxpayload=keep
linux /live/vmlinuz boot=live username=$username noapic noapm nodma nomce nolapic nosmp vga=normal
initrd /live/initrd.img
}
menuentry "Memory test" {
@ -304,7 +304,7 @@ INITRD_COMPR="xz --check=crc32 --x86 -6 -"
/create_initrd.sh /initrd.img /boot/\${SLIM_INITRD} \
"\${INITRD_COMPR}" \${MICRO_INITRD}
"\${INITRD_COMPR}" \${MICRO_INITRD}
rm -f $(realpath /initrd.img)
rm -f $(realpath /initrd.img.old)
@ -384,7 +384,7 @@ blend_finalize() {
sudo cp -L ${strapdir}/boot/initrd.img ${workdir}/binary/live/
printf "done\n"
printf "copying memtest86 to /binary/live\n"
sudo cp ${strapdir}/boot/memtest86+.bin ${workdir}/binary/live/memtest
sudo cp ${strapdir}/boot/memtest86+.bin ${workdir}/binary/live/memtest
printf "done\n"
echo "done"
}