# --- T2-COPYRIGHT-NOTE-BEGIN --- # T2 SDE: architecture/share/boot/boot.in # Copyright (C) 2007 - 2023 The T2 SDE Project # # This Copyright note is generated by scripts/Create-CopyPatch, # more information can be found in the files COPYING and README. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2. # --- T2-COPYRIGHT-NOTE-END --- . $base/architecture/share/boot/grub.in arch_boot_cd_pre() { mkdir -p $isofsdir/boot/ echo -n > $1/boot/extlinux.cfg } arch_boot_cd_add() { cat >> $1/boot/extlinux.conf <<-EOT label $2 menu label $3 ($2) kernel $4 initrd $5 EOT } arch_boot_cd_post() { echo_status "Creating isofs_arch.txt file .." echo "DISK1 $isofsdir/ /" > $build_toolchain/isofs_arch.txt cat >> $build_toolchain/isofs_arch.txt <<- EOT EOT }