diff options
Diffstat (limited to 'auto/config')
-rwxr-xr-x | auto/config | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/auto/config b/auto/config index 28bdde7..ecb7f73 100755 --- a/auto/config +++ b/auto/config @@ -48,7 +48,7 @@ bullseye) KSECURITY="true" ;; *) - KDEBOOTSTRAPOPTIONS="--include=apt-transport-https,ca-certificates,gpg,gpg-agent,mime-support --exclude=nano" + KDEBOOTSTRAPOPTIONS="--include=apt-transport-https,ca-certificates,gpg,gpg-agent,mailcap,media-types --exclude=nano" ;; esac @@ -124,12 +124,21 @@ bullseye) esac ;; bookworm) - LB_REPOSITORIES+="slowfire acritoxinstaller-qt4" + LB_REPOSITORIES+="acritoxinstaller-qt4 slowfire" case $LB_ARCHITECTURE in amd64) LB_LINUX_PACKAGES="linux-image linux-headers"; LB_LINUX_FLAVOURS="amd64";; i386) LB_LINUX_PACKAGES="linux-image linux-headers"; LB_LINUX_FLAVOURS="686-pae";; esac ;; +trixie) + LB_REPOSITORIES+="acritoxinstaller-qt4 towelfire" + case $LB_ARCHITECTURE in + amd64) LB_LINUX_PACKAGES="linux-image linux-headers"; LB_LINUX_FLAVOURS="amd64";; + i386) LB_REPOSITORIES+=" kernel-pae" + LB_LINUX_PACKAGES="linux-image"; LB_LINUX_FLAVOURS="686-pae";; + esac + ;; + *) LB_REPOSITORIES+="spitfire steelfire silverfire speedfire" case $LB_ARCHITECTURE in @@ -201,7 +210,13 @@ lb config noauto --linux-packages "$LB_LINUX_PACKAGES" --linux-flavours "$LB_LIN # Fetch kanotix-scripts if necessary mkdir -p config/chroot_local-includes/usr/local/bin +echo "#KLB_config.log" > /tmp/KLB_config.log grep -oe '^[^ #]*' scripts.urls | wget -i- -N -q -P config/chroot_local-includes/usr/local/bin +if [ $? -ne 0 ]; then + echo "E: Script download failed..." >>/tmp/KLB_config.log +else + echo "Debug: Script download succes..." >>/tmp/KLB_config.log +fi chmod 755 config/chroot_local-includes/usr/local/bin/*sh || : case "$LB_DISTRIBUTION" in |