You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
542 B

  1. # -*- sh -*-
  2. # output image
  3. VERSION="20.04.1"
  4. OUTPUT="nilmbuntu-${VERSION}.iso"
  5. # original ISO
  6. ISONAME="xubuntu-${VERSION}-desktop-amd64.iso"
  7. ORIGURL="http://cdimage.ubuntu.com/xubuntu/releases/${VERSION}/release/${ISONAME}"
  8. # work directories, temporary qemu HD image, etc. Shouldn't need to change these.
  9. ORIG="tmp-${VERSION}/$ISONAME"
  10. FS="tmp-${VERSION}/fs"
  11. ISO="tmp-${VERSION}/iso"
  12. MNT="tmp-${VERSION}/mnt"
  13. DISK="tmp-${VERSION}/disk.img"
  14. # non-privileged user, so we don't need to do everything as root
  15. NONPRIV_UID=${SUDO_UID:-$UID}