Fix 67: New '--add' parameter for 'pmbootstrap install' to add custom packages.

Example usage:

./pmbootstrap install --add='vim,gcc'
This commit is contained in:
Oliver Smith 2017-06-08 18:10:00 +02:00
parent 5016c196ba
commit 9515782f8d
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
2 changed files with 12 additions and 5 deletions

View File

@ -82,17 +82,22 @@ def install(args, show_flash_msg=True):
pmb.chroot.apk.install(args, pmb.config.install_native_packages,
build=False)
# Explicitly call build on the install packages, to re-build it or any
# dependency, in case the version increased
# List all packages to be installed (including the ones specified by --add)
# and upgrade the installed packages/apkindexes
logging.info("*** (2/5) CREATE DEVICE ROOTFS (" + args.device + ") ***")
install_packages = pmb.config.install_device_packages + ["device-" + args.device]
install_packages = (pmb.config.install_device_packages + ["device-" + args.device])
suffix = "rootfs_" + args.device
pmb.chroot.apk.upgrade(args, suffix)
# Explicitly call build on the install packages, to re-build them or any
# dependency, in case the version increased
if args.add:
install_packages += args.add.split(",")
for pkgname in install_packages:
pmb.build.package(args, pkgname, args.deviceinfo["arch"])
# Install all packages to device rootfs chroot
suffix = "rootfs_" + args.device
pmb.chroot.apk.install(args, install_packages, suffix)
pmb.chroot.apk.upgrade(args, suffix)
set_user_password(args)
# Partition and fill image/sdcard

View File

@ -108,6 +108,8 @@ def arguments():
" eg. /dev/mmcblk0")
install.add_argument("--cipher", help="cryptsetup cipher used to"
" encrypt the system partition, eg. aes-xts-plain64")
install.add_argument("--add", help="comma separated list of packages to be"
" added to the rootfs (e.g. 'vim,gcc')")
# Action: build / checksum / menuconfig / parse_apkbuild / aportgen
menuconfig = sub.add_parser("menuconfig", help="run menuconfig on"