diff options
-rwxr-xr-x | config/chroot_local-hooks/03-ntfs3-override | 10 | ||||
-rw-r--r-- | config/lists/base | 5 | ||||
-rw-r--r-- | config/lists/kanotix-lxde-full | 2 | ||||
-rwxr-xr-x | nightly_build.bash | 18 |
4 files changed, 27 insertions, 8 deletions
diff --git a/config/chroot_local-hooks/03-ntfs3-override b/config/chroot_local-hooks/03-ntfs3-override new file mode 100755 index 0000000..2e7a3f9 --- /dev/null +++ b/config/chroot_local-hooks/03-ntfs3-override @@ -0,0 +1,10 @@ +#!/bin/sh + +for file in /root/config/*; do [ -r $file ] && . $file; done + +case "${LB_DISTRIBUTION}" in + +bookworm|trixie) + [ -e /sbin/mount.ntfs3 ] || ln -sfv $(readlink /sbin/mount.ntfs-3g) /sbin/mount.ntfs3 + ;; +esac diff --git a/config/lists/base b/config/lists/base index 0be58b5..962bb27 100644 --- a/config/lists/base +++ b/config/lists/base @@ -5,6 +5,11 @@ #include <base.kanotix> sudo +# provide android-tools +#if ARCHITECTURE amd64 +#include <android> +#endif + # handle polkit since bookworm #nif DISTRIBUTION wheezy jessie stretch buster bullseye polkitd diff --git a/config/lists/kanotix-lxde-full b/config/lists/kanotix-lxde-full index 585f947..3dcc2fb 100644 --- a/config/lists/kanotix-lxde-full +++ b/config/lists/kanotix-lxde-full @@ -25,6 +25,8 @@ libsane-extras #endif sane-utils sane +#gpicview pcmanfm heif support +heif-gdk-pixbuf # network diff --git a/nightly_build.bash b/nightly_build.bash index 599ad79..e2b7da8 100755 --- a/nightly_build.bash +++ b/nightly_build.bash @@ -89,14 +89,16 @@ sed -i 's/\(export LB_DISTRIBUTION=\).*/\1"'$DISTRO'"/' auto/config cat <<"EOF" >$target/readme-$KDISTRO.txt -Towelfire Isos are pre releases. -====================================== -based on debian trixie (testing for now) -bugs are expected -broken updates may happen - -i386 ships with bookworm kernel -and may break completely +Towelfire Isos are current release. +=================================== +Based on Debian13 trixie (stable). +Isos are nightly builds. +acritox installer(recommended) +and calamares installer are provided. + +i386 eeepc4G.iso ships with bookworm kernel +and reduced firmware +and may need nomodeset to boot. EOF ln -s $target/readme-$KDISTRO.txt $next/readme-$KDISTRO.txt |