summaryrefslogtreecommitdiff
path: root/CONF.sh
diff options
context:
space:
mode:
authorMichael Hudson-Doyle <[email protected]>2024-02-01 10:24:35 +1300
committerMichael Hudson-Doyle <[email protected]>2024-10-23 09:30:38 +0200
commit60f9d7a51683bd02a878ee195dda3d30907c9260 (patch)
treeadf6bbd2b1151801898f1d4b62378e002f616850 /CONF.sh
parent8c1125d936e828768bb9d34e39a60395a46555d0 (diff)
remove list2cds and everything to do with sizing images
list2cds is a complicated script that can check e.g. that all packages that a package on the ISO is also included and divides a set of packages into multiple ISOs each of which are under a certain size but we turn absolutely all of this functionality off and so we can replace its invocation with a call to 'cp'. Also remove all the slightly hairy code that tries to work out what size limit to pass to list2cds (which it was already ignoring).
Diffstat (limited to 'CONF.sh')
-rw-r--r--CONF.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/CONF.sh b/CONF.sh
index 927f9ba..5be0181 100644
--- a/CONF.sh
+++ b/CONF.sh
@@ -19,10 +19,6 @@ unset MKISOFS || true
unset MKISOFS_OPTS || true
unset ISOLINUX || true
unset EXCLUDE || true
-unset NODEPENDS || true
-unset NORECOMMENDS || true
-unset NOSUGGESTS || true
-unset DEFBINSIZE || true
unset FASTSUMS || true
unset DI_CODENAME || true
unset OMIT_MANUAL || true
@@ -247,37 +243,6 @@ export ISOLINUX=1
# the proper official CD run does not work
#ATTEMPT_FALLBACK=yes
-# Set your disk size here in MB. Used in calculating package and
-# source file layouts in build.sh and build_all.sh. Defaults are for
-# CD-R. For DVD-R the size limit is 4700372992 (see ubuntu-cdimage
-# lib/cdimage/tree.py:DailyTreePublisher.size_limit) but we express here
-# in MiB, so round down to 4482MiB (4699717632 bytes). If we round up to
-# 4483MiB we will *probably* still fit, but the limit would be 384KiB above
-# the actual limit so there's some risk of being oversize for media.
-if [ "$CDIMAGE_DVD" = 1 ]; then
- export DEFBINSIZE=4482
-else
- #export DEFBINSIZE=700
- export DEFBINSIZE=4600
-fi
-
-# We don't want certain packages to take up space on CD1...
-#export EXCLUDE="$BASEDIR"/tasks/exclude-sarge
-# ...but they are okay for other CDs (UNEXCLUDEx == may be included on CD >= x)
-#export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-sarge
-# Any packages listed in EXCLUDE but not in any UNEXCLUDE will be
-# excluded completely.
-
-export NODEPENDS=1
-
-# Set this if the recommended packages should be skipped when adding
-# package on the CD. The default is 'false'.
-export NORECOMMENDS=1
-
-# Set this if the suggested packages should be skipped when adding
-# package on the CD. The default is 'true'.
-export NOSUGGESTS=1
-
# Image format:
# iso = Output an image in ISO 9660 format (.iso)
# img = Output a raw partitioned disk image (.img)
@@ -293,10 +258,6 @@ export FASTSUMS=1
# for all architectures.
#export KERNEL_PARAMS="priority=critical"
-# If set to 0, never overflow binary CDs (for when you only want a single CD
-# and want to know when it overflows).
-export OVERFLOWBINCDS=0
-
# If set, overrides the boot picture used.
if [ -z "$SPLASHRLE" ]; then
export SPLASHRLE="$BASEDIR/data/$DI_CODENAME/splash.rle"