From a5246941b015492b4efafe999c3995339837a945 Mon Sep 17 00:00:00 2001 From: ecarlett Date: Tue, 7 May 2024 15:12:52 +0200 Subject: [PATCH] =?UTF-8?q?compile=20sans=20avoir=20modifi=C3=A9=20de=20co?= =?UTF-8?q?de=20ok?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compile.sh | 7 +++++++ make_pine.sh | 6 ++++++ make_pine_mcu.sh | 6 ++++++ 3 files changed, 19 insertions(+) create mode 100755 compile.sh create mode 100755 make_pine.sh create mode 100755 make_pine_mcu.sh diff --git a/compile.sh b/compile.sh new file mode 100755 index 00000000..6ee6c930 --- /dev/null +++ b/compile.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +rm -r build +cp make_pine.sh build/ + +cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=/home/eve/Work/gcc-arm-none-eabi-10.3-2021.10 -DNRF5_SDK_PATH=/home/eve/Work/nRF5_SDK_17.1.0_ddde560 -DTARGET_DEVICE=PINETIME -DBUILD_DFU=1 -DBUILD_RESOURCES=1 -B build -DCMAKE_BUILD_TYPE=Release + diff --git a/make_pine.sh b/make_pine.sh new file mode 100755 index 00000000..006c2421 --- /dev/null +++ b/make_pine.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +#cp ./displayapp/apps/Apps.h ../src/displayapp/apps/Apps.h + +make -j4 pinetime-app + diff --git a/make_pine_mcu.sh b/make_pine_mcu.sh new file mode 100755 index 00000000..d7af1cb8 --- /dev/null +++ b/make_pine_mcu.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +#cp ./displayapp/apps/Apps.h ../src/displayapp/apps/Apps.h + +make -j4 pinetime-mcuboot-app +