From 0454ad087aadaf5e5e7cf823b828e77ad44d1932 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Sun, 22 Aug 2021 13:11:08 +0100 Subject: [PATCH] Update builder to use debian bullseye --- Makefile | 2 +- apt.sources/bullseye.list | 5 +++++ apt.sources/buster.list | 5 ----- test/Makefile | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 apt.sources/bullseye.list delete mode 100644 apt.sources/buster.list diff --git a/Makefile b/Makefile index b5a56d8..c2066d7 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ # Default to just looking in the local directory for config files CONFIGDIRS ?= . -CONFIG_DISTRO ?= buster +CONFIG_DISTRO ?= bullseye CONFIG_DEBIAN_ARCH ?= armhf CONFIG_ROOT_PASS = root diff --git a/apt.sources/bullseye.list b/apt.sources/bullseye.list new file mode 100644 index 0000000..cb69f15 --- /dev/null +++ b/apt.sources/bullseye.list @@ -0,0 +1,5 @@ +# +# The standard debian stable reference for Bullseye + +deb http://httpredir.debian.org/debian bullseye main contrib non-free +##builder keyring debian-archive-keyring diff --git a/apt.sources/buster.list b/apt.sources/buster.list deleted file mode 100644 index 4370754..0000000 --- a/apt.sources/buster.list +++ /dev/null @@ -1,5 +0,0 @@ -# -# The standard debian stable reference for Buster - -deb http://httpredir.debian.org/debian buster main contrib non-free -##builder keyring debian-archive-keyring diff --git a/test/Makefile b/test/Makefile index 7a80794..1d61d97 100644 --- a/test/Makefile +++ b/test/Makefile @@ -6,7 +6,7 @@ all: test -CONFIG_DEBIAN_VER = buster +CONFIG_DEBIAN_VER = bullseye CONFIG_DEBIAN_ARCH = i386 export CONFIG_DEBIAN_ARCH