File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -69,11 +69,24 @@ if [ ! -x $idf_was_installed ] || [ ! -x $commit_predefined ]; then
69
69
patch -p1 -N -i ../patches/esp32s2_i2c_ll_master_init.diff
70
70
cd -
71
71
72
- # Get the exact IDF version from file "version.txt"
72
+ # remove code and component(s) not needed/wanted for Tasmota framework solo1
73
+ cd $IDF_PATH
74
+ rm -rf components/usb
75
+ rm -rf components/esp-gdbstub
76
+ rm -rf components/openthread
77
+ rm -rf components/espcoredump
78
+ rm -rf components/esp_lcd
79
+ rm -rf components/touch_element
80
+ rm -rf components/perfmon
81
+ rm -rf components/riscv
82
+ rm -rf components/app_trace
83
+ cd -
84
+
85
+ # Get the exact IDF version from file "version.txt"
73
86
cd $IDF_PATH
74
87
export IDF_VERSION=$( < version.txt)
75
88
echo " IDF version: $IDF_VERSION "
76
- cd -
89
+ cd -
77
90
fi
78
91
79
92
#
You can’t perform that action at this time.
0 commit comments