summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-04-29 17:47:36 +0300
committerLars Wirzenius <liw@liw.fi>2023-04-29 17:47:36 +0300
commit71e42ba0b9704caba10e9baddad25140662a0f3a (patch)
treec0bf6dd97295411ec15352a0449a6f4984e46ed5
parent48c6b93b043a3d66a9ec5411eede431178e20548 (diff)
downloadvmdb2-71e42ba0b9704caba10e9baddad25140662a0f3a.tar.gz
install kernel package with debootstrap, apt is not needed
Sponsored-by: author
-rwxr-xr-xcheck-one3
1 files changed, 3 insertions, 0 deletions
diff --git a/check-one b/check-one
index 3062778..4532cb9 100755
--- a/check-one
+++ b/check-one
@@ -33,6 +33,9 @@ class Config:
debootstrap["debootstrap"] = args.debian_release
if args.arch is not None:
debootstrap["arch"] = args.arch
+ debootstrap["include"] = debootstrap.get("include", []) + [
+ f"linux-image-{args.arch}"
+ ]
if args.mklabel is not None:
mklabel["mklabel"] = args.mklabel
if args.grub is not None: