From 924216b934bfefeeac8d5aff14fcea19054fd442 Mon Sep 17 00:00:00 2001 From: Takumi Sueda Date: Mon, 23 Dec 2024 18:42:49 +0900 Subject: [PATCH 1/2] Update linux-brain: enable USB UART converter --- linux-brain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-brain b/linux-brain index afbb7e0..aa3edcd 160000 --- a/linux-brain +++ b/linux-brain @@ -1 +1 @@ -Subproject commit afbb7e017623f0963270cbad512f1d83b83a3d5b +Subproject commit aa3edcd5fcbc4697e3b52fde3a1b1f8bd9c94e82 From 17c4c8b5a7407d7c7ecf19f2cce522013875a9e3 Mon Sep 17 00:00:00 2001 From: Takumi Sueda Date: Mon, 23 Dec 2024 19:13:03 +0900 Subject: [PATCH 2/2] Specify the version of setuptools to avoid failing installing listconfig due to the old Python --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8bbe60f..97c8e55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: - name: Install deps run: sudo apt update && sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi qemu-user-static debootstrap python3-pip - name: Upgrade pip and setuptools - run: pip3 install -U pip setuptools + run: pip3 install -U pip 'setuptools<71' - name: Install listconfig run: pip3 install listconfig - name: Configure for Linux