14 lines
428 B
Bash
Executable File
14 lines
428 B
Bash
Executable File
#!/bin/bash
|
|
export TOOLCHAIN=/home/zhangzheng/gcc-arm-none-eabi-5_4-2016q3/bin/
|
|
export TOOLCHAIN_LIB=/home/zhangzheng/gcc-arm-none-eabi-5_4-2016q3/lib/gcc/arm-none-eabi/5.4.1/armv7-m
|
|
export KNL=mkrtos
|
|
export KEN_OFFSET=0x2000
|
|
export INIT_OFFSET=0x10000
|
|
export BOOTFS_ADDR_OFFSET=0x20000
|
|
export KNL_TEXT=0x8000000
|
|
export KNL_DATA=0x20000000
|
|
export KNL_DATA_SIZE=1024K
|
|
|
|
set -e
|
|
cmake -G Ninja -B build/$KNL .
|
|
cd build/$KNL && ninja |