From 935363d6ac3decde5fe4efc720ec71c09d59988e Mon Sep 17 00:00:00 2001 From: Takumi Sueda Date: Wed, 21 Dec 2022 02:01:18 +0900 Subject: [PATCH] Change the base rootfs to bullseye It is unintentionally reverted back to buster --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index be82253..e966063 100644 --- a/Makefile +++ b/Makefile @@ -144,9 +144,9 @@ brainux: sudo mkdir -p brainux @if [ "$(CI)" = "true" ]; then \ echo "I'm in CI and debootstrap without cache."; \ - sudo debootstrap --arch=$(ROOTFS_CROSS) --foreign buster brainux/; \ + sudo debootstrap --arch=$(ROOTFS_CROSS) --foreign bullseye brainux/; \ else \ - sudo debootstrap --arch=$(ROOTFS_CROSS) --foreign buster brainux/ http://localhost:65432/debian/; \ + sudo debootstrap --arch=$(ROOTFS_CROSS) --foreign bullseye brainux/ http://localhost:65432/debian/; \ fi sudo cp /usr/bin/qemu-arm-static brainux/usr/bin/ sudo cp ./os-brainux/setup_brainux.sh brainux/