From d8f0e64c435b364a1e659f75ee48a6e6f0ee8c34 Mon Sep 17 00:00:00 2001 From: ngn Date: Mon, 19 Aug 2024 02:28:55 +0300 Subject: [PATCH] update: use the new matter-iso naming --- iso.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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 }