From 938881b56024f48f9d5ee7cb5bf982a8e7c47bd6 Mon Sep 17 00:00:00 2001 From: osbm Date: Mon, 30 Sep 2024 17:40:06 +0300 Subject: [PATCH] add rp2040 compilation --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 918ce8e..2bebeba 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,9 @@ all: echo started compiling docker run --rm -it --privileged -v /dev:/dev -w /qmk_firmware -v .:/qmk_firmware/keyboards/crkbd/keymaps/osbm-config:z -e SKIP_GIT= -e SKIP_VERSION= -e MAKEFLAGS= qmk-cli make crkbd/rev1:osbm-config:flash + +flash-rp2040: + docker run --rm -it --privileged -v /dev:/dev -w /qmk_firmware -v .:/qmk_firmware/keyboards/crkbd/keymaps/osbm-config:z -e USER=root -e SKIP_GIT= -e SKIP_VERSION= -e MAKEFLAGS= -e CONVERT_TO=rp2040_ce qmk-cli make crkbd/rev1:osbm-config:flash build-image: docker build -t qmk-cli .