From f4caf9e5f5dd52bfa7f1c0b65dd68e6c1172c5e0 Mon Sep 17 00:00:00 2001 From: Ralf Zerres Date: Fri, 31 Jan 2020 09:32:44 +0100 Subject: [PATCH] arch-create-system: add 'install-target' parameter Signed-off-by: Ralf Zerres --- usr/bin/arch-create-system | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr/bin/arch-create-system b/usr/bin/arch-create-system index 3145ad5..4603689 100755 --- a/usr/bin/arch-create-system +++ b/usr/bin/arch-create-system @@ -776,6 +776,10 @@ parse_params () { dryrun=1 shift 1 ;; + -i|--install|--install-target) + shift 1 + cmd=install-target + ;; --mountpoint|--MOUNTPOINT) mount_point="$2" shift 2 @@ -1089,6 +1093,7 @@ usage () { " --color Enable colored output messages" \ " --dry-run perform a trial run (no changes are written)" \ " --get-config-names show pre-defined configs from config-file" \ + " -i, --install-target install system on given target" \ " --mountpoint Specify MountPoint preparing targets OS-Disk" \ " --label_prefix Specify the partion label prefix" \ " -t, --disk_dev_root Specify the blockdevice for the target OS (e.g /dev/sda)" \