From 71e42ba0b9704caba10e9baddad25140662a0f3a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 29 Apr 2023 17:47:36 +0300 Subject: install kernel package with debootstrap, apt is not needed Sponsored-by: author --- check-one | 3 +++ 1 file changed, 3 insertions(+) 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: -- cgit v1.2.1