Skip to content

Commit 3ca5fa1

Browse files
committed
Fix build script to allow .hex instead than .bin
1 parent 059e7fb commit 3ca5fa1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

extra/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515
source venv/bin/activate
1616

1717
(west build loader -b $board -p && west build -t llext-edk)
18-
(tar xvfp build/zephyr/llext-edk.tar.xz --directory variants/$variant/)
18+
(tar xfp build/zephyr/llext-edk.tar.xz --directory variants/$variant/)
1919

2020
(cp build/zephyr/zephyr.elf firmwares/zephyr-$variant.elf)
2121
if [ -f build/zephyr/zephyr.bin ]; then

loader/boards/ek_ra8d1.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11

22
CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=480000000
3+
CONFIG_BUILD_OUTPUT_BIN=n

0 commit comments

Comments
 (0)