diff --git a/iso.sh b/iso.sh index 15664c2..03d2d0d 100644 --- a/iso.sh +++ b/iso.sh @@ -1,13 +1,17 @@ NAME="matterlinux" -VERSION="24.04" +VERSION="24.05" EXCLUDE=("README.md" "LICENSE.txt") KEYS=("F9E70878C2FB389AEC2BA34CA3654DF5AD9F641D") -PKGS1=("systemd" "dhcpcd" "dosfstools" "tools") + +# these will be included in initrd image +PKGS1=("dhcpcd" "dosfstools" "mtsc") + +# these will not PKGS2=("linux") -build() { - echo "root:root" | chpasswd - systemctl preset-all +BUILD() { + echo "root:root" | chpasswd + systemctl preset-all cp /usr/sbin/init . sed -i "s/VERSION_HERE/$VERSION/g" /boot/grub/grub.cfg }