forked from Mirror/pmbootstrap
pmbootstrap install: add --ondev --cp (MR 1995)
Allow to copy one or more files to the install chroot. It will be possible to use this to put a non-pmOS image into the generated installer OS.
This commit is contained in:
parent
2660360293
commit
74d71c1b6c
3 changed files with 40 additions and 0 deletions
|
@ -233,6 +233,9 @@ def install(args):
|
|||
if args.rsync:
|
||||
raise ValueError("--on-device-installer cannot be combined with"
|
||||
" --rsync")
|
||||
else:
|
||||
if args.ondev_cp:
|
||||
raise ValueError("--cp can only be combined with --ondev")
|
||||
|
||||
# On-device installer overrides
|
||||
if args.on_device_installer:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue