~jibel/debian-cd/isolinux_safe_graphics_mode

« back to all changes in this revision

Viewing changes to tools/boot/eoan/boot-amd64+mac

  • Committer: Steve Langasek
  • Date: 2019-04-24 18:24:20 UTC
  • mfrom: (2026.1.1 ubuntu-cd)
  • Revision ID: steve.langasek@canonical.com-20190424182420-nrqc7e8z7qh3lnot
MergeĀ lp:~xnox/debian-cd/drop-boot-casper

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
label live
366
366
  menu label $livelabel
367
367
  kernel /casper/vmlinuz
368
 
  append $KERNEL_PARAMS $DEFAULT_PRESEED boot=casper$liveparams initrd=$CASPER_INITRD quiet splash ---
 
368
  append $KERNEL_PARAMS $DEFAULT_PRESEED$liveparams initrd=$CASPER_INITRD quiet splash ---
369
369
EOF
370
370
    cat >> $CDDIR/boot/grub/loopback.cfg <<EOF
371
371
menuentry "${livelabel#^}" {
372
372
        set gfxpayload=keep
373
 
        linux   /casper/vmlinuz $KERNEL_PARAMS $DEFAULT_PRESEED boot=casper$liveparams iso-scan/filename=\${iso_path} quiet splash ---
 
373
        linux   /casper/vmlinuz $KERNEL_PARAMS $DEFAULT_PRESEED$liveparams iso-scan/filename=\${iso_path} quiet splash ---
374
374
        initrd  $CASPER_INITRD
375
375
}
376
376
EOF
379
379
label live-install
380
380
  menu label ^Install $HUMANPROJECT
381
381
  kernel /casper/vmlinuz
382
 
  append $KERNEL_PARAMS $DEFAULT_PRESEED boot=casper only-ubiquity initrd=$CASPER_INITRD quiet splash ---
 
382
  append $KERNEL_PARAMS $DEFAULT_PRESEED only-ubiquity initrd=$CASPER_INITRD quiet splash ---
383
383
EOF
384
384
        cat >> $CDDIR/boot/grub/loopback.cfg <<EOF
385
385
menuentry "Install $HUMANPROJECT" {
386
 
        linux   /casper/vmlinuz $KERNEL_PARAMS $DEFAULT_PRESEED boot=casper only-ubiquity iso-scan/filename=\${iso_path} quiet splash ---
 
386
        linux   /casper/vmlinuz $KERNEL_PARAMS $DEFAULT_PRESEED only-ubiquity iso-scan/filename=\${iso_path} quiet splash ---
387
387
        initrd  $CASPER_INITRD
388
388
}
389
389
EOF
489
489
label check
490
490
  menu label ^Check disc for defects
491
491
  kernel /casper/vmlinuz
492
 
  append $KERNEL_PARAMS boot=casper integrity-check initrd=$CASPER_INITRD quiet splash ---
 
492
  append $KERNEL_PARAMS integrity-check initrd=$CASPER_INITRD quiet splash ---
493
493
EOF
494
494
    cat >> $CDDIR/boot/grub/loopback.cfg <<EOF
495
495
menuentry "Check disc for defects" {
496
 
        linux   /casper/vmlinuz $KERNEL_PARAMS boot=casper integrity-check iso-scan/filename=\${iso_path} quiet splash ---
 
496
        linux   /casper/vmlinuz $KERNEL_PARAMS integrity-check iso-scan/filename=\${iso_path} quiet splash ---
497
497
        initrd  $CASPER_INITRD
498
498
}
499
499
EOF