File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ git -C esp-idf submodule update --init --recursive
14
14
``` shell
15
15
git clone https://github.com/m5stack/uiflow_micropython
16
16
cd uiflow_micropython/m5stack
17
+ make littlefs
17
18
make submodules
18
19
make mpy-cross
19
20
make -j
Original file line number Diff line number Diff line change 75
75
python ./../tools/nvs_partition_gen.py generate partition_nvs.csv \
76
76
$(BUILD ) /nvs.bin 0x6000 # defined in partitions.csv
77
77
78
+ littlefs :
79
+ cd ./../tools/littlefs && rm ./build -rf && mkdir build && cd build && \
80
+ cmake .. && make -j && cp ./littlefs2 ./../prebuilt/linux
81
+
78
82
mpy-cross :
79
83
make -C ../micropython/mpy-cross
80
84
81
85
# The two submodules do not belong to the same repository
82
86
# micropython submodule belong to uiflow_micropython
83
87
# berkeley-db-1.xx submodule belong to micropython submodule
84
88
submodules :
89
+ git submodule update --init ../tools/littlefs/mbed-littlefs
85
90
git submodule update --init ../micropython
86
91
cd ./../micropython && git submodule update --init $(addprefix ./,$(GIT_SUBMODULES ) ) && cd -
Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ function ci_esp32_idf44_setup {
92
92
93
93
function ci_esp32_build {
94
94
source esp-idf/export.sh
95
+ make ${MAKEOPTS} -C m5stack littlefs
95
96
make ${MAKEOPTS} -C m5stack mpy-cross
96
97
make ${MAKEOPTS} -C m5stack submodules
97
98
make ${MAKEOPTS} -C m5stack
You can’t perform that action at this time.
0 commit comments