Porteus-XFCE-v5.01
BIOS: /boot/syslinux/isolinux.bin
Porteus-XFCE-v5.1make_iso.sh
BIOS: /boot/syslinux/isolinux.bin
Code: Select all
#!/bin/bash
# ---------------------------------------------------
# Script to create bootable ISO in Linux
# usage: make_iso.sh [ /tmp/porteus.iso ]
# author: Tomas M. <http://www.linux-live.org>
# updated for Porteus by fanthom <http://www.porteus.org>
# ---------------------------------------------------
if [ "$1" = "--help" -o "$1" = "-h" ]; then
echo "This script will create bootable ISO from files in curent directory."
echo "Current directory must be writable."
echo "example: $0 /mnt/sda5/porteus.iso"
exit
fi
CDLABEL="Porteus"
ISONAME=$(readlink -f "$1")
cd $(dirname $0)
if [ "$ISONAME" = "" ]; then
SUGGEST=$(readlink -f ../../$(basename $(pwd)).iso)
echo -ne "Target ISO file name [ Hit enter for $SUGGEST ]: "
read ISONAME
if [ "$ISONAME" = "" ]; then ISONAME="$SUGGEST"; fi
fi
mkisofs -o "$ISONAME" -v -l -J -joliet-long -R -D -A "$CDLABEL" \
-V "$CDLABEL" -no-emul-boot -boot-info-table -boot-load-size 4 \
-b boot/syslinux/isolinux.bin -c boot/syslinux/isolinux.boot ../.VS.
slackware64-xfce-currentmake_slackware_live.sh
BIOS: /boot/syslinux/isolinux.bin
UEFI: /boot/syslinux/efiboot.img
# Determine whether we add UEFI boot capabilities to the ISO:
if [ -f boot/syslinux/efiboot.img -a "$USEXORR" = "NO" ]; then
UEFI_OPTS="-eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF -eltorito-boot boot/syslinux/efiboot.img"
elif [ -f boot/syslinux/efiboot.img -a "$USEXORR" = "YES" ]; then
UEFI_OPTS="-eltorito-alt-boot -e boot/syslinux/efiboot.img -no-emul-boot"
https://download.liveslak.org/liveslak/ ... re_live.sh
Code: Select all
# Create an ISO file from a directory's content:
#
function create_iso() {
TOPDIR=${1:-"${LIVE_STAGING}"}
cd "$TOPDIR"
# Tag the type of live environment to the ISO filename:
if [ "$LIVEDE" = "SLACKWARE" ]; then
ISOTAG=""
else
ISOTAG="-$(echo $LIVEDE |tr A-Z a-z)"
fi
# Determine whether we add UEFI boot capabilities to the ISO:
if [ -f boot/syslinux/efiboot.img -a "$USEXORR" = "NO" ]; then
UEFI_OPTS="-eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF -eltorito-boot boot/syslinux/efiboot.img"
elif [ -f boot/syslinux/efiboot.img -a "$USEXORR" = "YES" ]; then
UEFI_OPTS="-eltorito-alt-boot -e boot/syslinux/efiboot.img -no-emul-boot"
else
UEFI_OPTS=""
fi
# Time to determine the output filename, now that we know all the variables
# and ensured that the OUTPUT directory exists:
OUTFILE=${OUTFILE:-"${OUTPUT}/${DISTRO}${DIRSUFFIX}-live${ISOTAG}-${SL_VERSION}.iso"}
if [ "$USEXORR" = "NO" ]; then
mkisofs -o "${OUTFILE}" \
-V "${MEDIALABEL}" \
-R -J \
-hide-rr-moved \
-v -d -N \
-no-emul-boot -boot-load-size ${BOOTLOADSIZE} -boot-info-table \
-sort boot/syslinux/iso.sort \
-b boot/syslinux/isolinux.bin \
-c boot/syslinux/isolinux.boot \
${UEFI_OPTS} \
-preparer "$(echo $LIVEDE |sed 's/BASE//') Live built by ${BUILDER}" \
-publisher "The Slackware Linux Project - http://www.slackware.com/" \
-A "${DISTRO^}-${SL_VERSION} for ${SL_ARCH} ($(echo $LIVEDE |sed 's/BASE//') Live $VERSION)" \
-x ./$(basename ${LIVE_WORK}) \
-x ./${LIVEMAIN}/bootinst \
-x boot/syslinux/testing \
.
if [ "$SL_ARCH" = "x86_64" -o "$EFI32" = "YES" ]; then
# Make this a hybrid ISO with UEFI boot support on x86_64.
# On 32bit, the variable EFI32 must be explicitly enabled.
isohybrid -u "${OUTFILE}"
else
isohybrid "${OUTFILE}"
fi # End UEFI hybrid ISO.
else
echo "-- Using xorriso to generate the ISO and make it hybrid."
xorriso -as mkisofs -o "${OUTFILE}" \
-V "${MEDIALABEL}" \
-J -joliet-long -r \
-hide-rr-moved \
-v -d -N \
-b boot/syslinux/isolinux.bin \
-c boot/syslinux/isolinux.boot \
-boot-load-size ${BOOTLOADSIZE} -boot-info-table -no-emul-boot \
${UEFI_OPTS} \
-isohybrid-mbr /usr/share/syslinux/isohdpfx.bin \
-isohybrid-gpt-basdat \
-preparer "$(echo $LIVEDE |sed 's/BASE//') Live built by ${BUILDER}" \
-publisher "The Slackware Linux Project - http://www.slackware.com/" \
-A "${DISTRO^}-${SL_VERSION} for ${SL_ARCH} ($(echo $LIVEDE |sed 's/BASE//') Live $VERSION)" \
-x ./$(basename ${LIVE_WORK}) \
-x ./${LIVEMAIN}/bootinst \
-x boot/syslinux/testing \
.
fi
# Return to original directory:
cd - 1>/dev/null
cd "${OUTPUT}"
md5sum "$(basename "${OUTFILE}")" \
> "$(basename "${OUTFILE}")".md5
sha256sum "$(basename "${OUTFILE}")" \
> "$(basename "${OUTFILE}")".sha256
cd - 1>/dev/null
echo "-- Live ISO image created:"
echo " - CDROM max size is 737.280.000 bytes (703 MB)"
echo " - DVD max size is 4.706.074.624 bytes (4.38 GB aka 4.7 GiB)"
ls -l "${OUTFILE}"*
} # End of create_iso()
