forked from Mirror/pmbootstrap
Add architecture argument for the buildroot chroot (#832)
* Add architecture argument for the buildroot chroot, defaults to device architecture * Output pmbootstrap log file after failure to debug Travis failure * Travis: disable timestamp based rebuilds
This commit is contained in:
parent
a3c1e22dd9
commit
9c1ef821b3
4 changed files with 28 additions and 3 deletions
|
@ -68,7 +68,10 @@ def _parse_suffix(args):
|
|||
if "rootfs" in args and args.rootfs:
|
||||
return "rootfs_" + args.device
|
||||
elif args.buildroot:
|
||||
return "buildroot_" + args.deviceinfo["arch"]
|
||||
if args.buildroot == "device":
|
||||
return "buildroot_" + args.deviceinfo["arch"]
|
||||
else:
|
||||
return "buildroot_" + args.buildroot
|
||||
elif args.suffix:
|
||||
return args.suffix
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue