Skip to content

Commit c5ce90b

Browse files
committed
extensions/apa: add some temporary packages to unblock testing
1 parent 0ce1e12 commit c5ce90b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

extensions/apa.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ function custom_apt_repo__add_apa() {
99
run_host_command_logged echo "deb [signed-by=${APT_SIGNING_KEY_FILE}] http://github.armbian.com/apa current main" "|" tee "${SDCARD}"/etc/apt/sources.list.d/armbian-apa.list
1010
}
1111

12+
# this variable is a temporary hack, remove as soon as it's not needed
13+
declare additional_packages = "libpam-systemd dbus-user-session"
14+
1215
function install_apa_hook__rename_me() { #FIXME: we need a better hook that fits into the extensions system
1316
# do not install armbian recommends for minimal images
1417
[[ "${BUILD_MINIMAL,,}" =~ ^(true|yes)$ ]] && INSTALL_RECOMMENDS="no-install-recommends" || INSTALL_RECOMMENDS="install-recommends"
15-
chroot_sdcard_apt_get install --$INSTALL_RECOMMENDS armbian-common
18+
chroot_sdcard_apt_get install --$INSTALL_RECOMMENDS armbian-common $additional_packages
1619
chroot_sdcard rm -f /etc/apt/sources.list.d/armbian-apa.list.inactive
1720

1821
# install desktop environment if requested

0 commit comments

Comments
 (0)