- Timestamp:
- 11/13/21 00:26:27 (3 years ago)
- Branches:
- master
- Children:
- 892871d
- Parents:
- 7c410f9
- Location:
- bootcd
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
bootcd/base.list
r7c410f9 r929bb42 213 213 libidn 214 214 nettle 215 libsrs2 -
bootcd/mkcd
r7c410f9 r929bb42 261 261 262 262 #cat grub/menutxt.lst | sed "s/%v/$UPDATE_VERSION/g" > $CDROOT/boot/grub/menutxt.lst || exit 1 263 264 #isolinux booter (BIOS mode) 263 265 cp -r isolinux $CDROOT/ || exit 1 264 266 sed "s/%major%/$UPDATE_VERSION/g" -i $CDROOT/isolinux/*.cfg || exit 1 265 267 sed "s/%version%/$VERSION/g" -i $CDROOT/isolinux/*.cfg || exit 1 268 269 #grub2 booter (UEFI mode) 270 cp -r EFI $CDROOT/ || exit 1 271 cp -r boot $CDROOT/ || exit 1 266 272 267 273 … … 408 414 409 415 #mkisofs -no-emul-boot -boot-load-size 4 -V "Syn-3 installer" -boot-info-table -R -J -r -b boot/grub/stage2_eltorito -o $ISO $CDROOT >/dev/null|| exit 1 410 mkisofs -no-emul-boot -boot-load-size 4 -V "Syn-3 installer" -boot-info-table -R -J -r -b isolinux/isolinux.bin -c isolinux/boot.cat -o $ISO $CDROOT >/dev/null|| exit 1 411 #maak hem ook bootable als harddisk image op usb stick 412 ./isohybrid.pl $ISO || exit 1 416 # mkisofs \ 417 # -no-emul-boot \ 418 # -boot-load-size 4 \ 419 # -V "Syn-3 installer" \ 420 # -boot-info-table \ 421 # -R \ 422 # -J \ 423 # -r \ 424 # -b isolinux/isolinux.bin \ 425 # -c isolinux/boot.cat \ 426 # -eltorito-alt-boot \ 427 # -eltorito-platform 0xEF \ 428 # -eltorito-boot isolinux/efiboot.img \ 429 # -o $ISO \ 430 # $CDROOT \ 431 # >/dev/null || exit 1 432 433 xorriso -as mkisofs -r -V "SYN-3 installer" \ 434 -cache-inodes -J -l \ 435 -isohybrid-mbr isohybrid_mbr.img \ 436 -c isolinux/boot.cat \ 437 -b isolinux/isolinux.bin \ 438 -no-emul-boot -boot-load-size 4 -boot-info-table \ 439 -eltorito-alt-boot \ 440 -e boot/grub/efi.img \ 441 -no-emul-boot -isohybrid-gpt-basdat \ 442 -o "$ISO" \ 443 "$CDROOT" || exit 1 444 445 446 #maak hem ook bootable als harddisk image op usb stick. (tool uit syslinux-utils package) 447 # isohybrid --uefi $ISO || exit 1 413 448 414 449 ln -sf `basename $ISO` $BUILDROOT/iso/latest.iso || exit 1
Note: See TracChangeset
for help on using the changeset viewer.