From e12381cd348ff64ab1a8f1e39a39a7a3afd032be Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 05 Aug 2014 16:26:24 -0400 Subject: installers/pc: Allow user to install extra pkgs --- diff --git a/installers/data/pc.sh b/installers/data/pc.sh index 8e748dc..651c0bc 100644 --- a/installers/data/pc.sh +++ b/installers/data/pc.sh @@ -192,4 +192,13 @@ printf '\n' cp -p /boot/vmlinuz /boot/vmlinuz.old install-lilo "${boot}" "/dev/${root}" >&2 +printf '\nCustom configuration' +printf '\n====================\n\n' +printf 'Additional packages to install (e.g. "fbi cmatrix acpi") or empty: ' +_read -r custom_pkgs +printf '\n' +if [ "x${custom_pkgs}" != 'x' ]; then + opkg install ${custom_pkgs} +fi + printf '\nInstallation complete!\n' -- cgit v0.9.1