From 449d43e182e432ea0fee7e446f817d153c603087 Mon Sep 17 00:00:00 2001 From: Serge Schneider Date: Mon, 11 Nov 2024 10:59:20 +0000 Subject: [PATCH] Exclude ifupdown as it slows down boot --- scripts/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common b/scripts/common index 702576f..932a2ee 100644 --- a/scripts/common +++ b/scripts/common @@ -12,7 +12,7 @@ bootstrap(){ BOOTSTRAP_ARGS+=(--arch armhf) BOOTSTRAP_ARGS+=(--components "main,contrib,non-free") BOOTSTRAP_ARGS+=(--keyring "${STAGE_DIR}/files/raspberrypi.gpg") - BOOTSTRAP_ARGS+=(--exclude=info) + BOOTSTRAP_ARGS+=(--exclude=info,ifupdown) BOOTSTRAP_ARGS+=(--include=ca-certificates) BOOTSTRAP_ARGS+=("$@") printf -v BOOTSTRAP_STR '%q ' "${BOOTSTRAP_ARGS[@]}"