fix: rename matter-base packages

This commit is contained in:
ngn 2024-08-12 03:07:34 +03:00
parent ff3245979e
commit 1a2593959e
3 changed files with 27 additions and 25 deletions

View File

@ -10,6 +10,6 @@ To use the `matter-base` script, specify a temporary target
directory, it will be cleaned after the build. The final archive directory, it will be cleaned after the build. The final archive
will be named after the directory. For example: will be named after the directory. For example:
``` ```
matter-setup matterlinux_24.00 matter-base matterlinux_24.00
``` ```
This will create an arhcive named `matterlinux_24.00.tar.gz` This will create an arhcive named `matterlinux_24.00.tar.gz`

View File

@ -121,13 +121,15 @@ check_ret "matt command failed"
info "Installing base system packages" info "Installing base system packages"
matt install --root "${target}" --yes \ matt install --root "${target}" --yes \
acl attr coreutils binutils \ acl attr coreutils binutils \
bash e2fsprogs udev file release \ bash e2fsprogs file release \
findutils gawk grep gzip iana-etc \ findutils gawk grep gzip \
inetutils intltool iproute kmod less \ iana-etc inetutils intltool \
openssl sed shadow tar tcl mandb \ kmod less openssl sed shadow \
man-pages tzdata util-linux which \ tar tcl man-pages tzdata \
matt gettext iproute procps psmisc \ util-linux which matt \
mandb kbd dbus vim nano libxml2 gettext procps-ng psmisc kbd \
dbus vim nano libxml2 \
iproute2 man-db
check_ret "matt command failed" check_ret "matt command failed"
success "Installed the base system" success "Installed the base system"

View File

@ -187,7 +187,7 @@ popd > /dev/null
if [ ! -z "${PKGS2}" ]; then if [ ! -z "${PKGS2}" ]; then
info "Installing extra packages (2)" info "Installing extra packages (2)"
matter-chroot "${tmpdir}" MP_YES=1 matt install --yes $pkgs2_str matter-chroot "${tmpdir}" matt install --yes $pkgs2_str
check_ret "Install failed" check_ret "Install failed"
fi fi