Source: debian-cd Version: 3.1.35 Severity: normal Tags: patch X-Debbugs-Cc: szilard.an...@gmail.com
Debian CD Group, The default CODENAME should be changed to bookworm (testing). Below is a patch, which I successfully tested with: $ ./easy-build.sh NETINST Thank you! Daniel Lewart Urbana, Illinois --- diff -ru a/CONF.sh b/CONF.sh --- a/CONF.sh 2021-09-06 05:22:44.000000000 -0500 +++ b/CONF.sh 2021-09-12 00:00:00.000000000 -0500 @@ -70,7 +70,7 @@ export DI_CODENAME=$CODENAME fi # If you want backported d-i (e.g. by setting -# DI_CODENAME=jessie-backports, then you'll almost definitely also +# DI_CODENAME=bookworm-backports, then you'll almost definitely also # want to enable BACKPORTS below as well # Should we include some packages from backports? If so, point at a @@ -86,8 +86,8 @@ # the Debian mirror. #export DI_WWW_HOME=default -# Version number, "2.2 r0", "2.2 r1" etc. -export DEBVERSION="11.0.0" +# Version number, "10.11.0", "11.1.0", "testing", etc +export DEBVERSION="testing" # Official or non-official set. # NOTE: THE "OFFICIAL" DESIGNATION IS ONLY ALLOWED FOR IMAGES AVAILABLE @@ -136,7 +136,7 @@ # export NONFREE=1 # Do I want to have CONTRIB merged in the CD set -export CONTRIB=1 +# export CONTRIB=1 # Do I want to have NONFREE on a separate CD (the last CD of the CD set) # WARNING: Don't use NONFREE and EXTRANONFREE at the same time ! @@ -208,8 +208,8 @@ # Extra keys that you might want apt to trust. List their fingerprints # here and debian-cd will grab them from the user's keyring as needed -# (The example here is the buster release key) -#export ARCHIVE_EXTRA_KEYS="80D15823B7FD1561F9F7BCDDDC30D7C23CBBABEE" +# (The example here is the bullseye release key) +#export ARCHIVE_EXTRA_KEYS="1F89983E0081FDE018F3CC9673A4F27B8DD47936" # By default we use debootstrap --no-check-gpg to find out the minimal set # of packages because there's no reason to not trust the local mirror. But diff -ru a/easy-build.sh b/easy-build.sh --- a/easy-build.sh 2021-09-06 05:22:44.000000000 -0500 +++ b/easy-build.sh 2021-09-12 00:00:00.000000000 -0500 @@ -72,10 +72,10 @@ ## For what release to build images # The suite the installed system will be based on -export CODENAME=buster +export CODENAME=bookworm # The suite from which the udebs for the installer will be taken (normally # the same as CODENAME) -export DI_CODENAME=buster +export DI_CODENAME=bookworm ## The debian-installer images to use. This must match the suite (DI_CODENAME) ###