Skip to content

Commit 2d34aeb

Browse files
committed
remove "PPP"
1 parent 6c25f55 commit 2d34aeb

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

patches/Arduino_CMakeLists.diff

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,34 @@
11
diff --git a/CMakeLists.txt b/CMakeLists.txt
2-
index d3972bf06a..3813da3468 100644
2+
index d3972bf06a..88c9910f76 100644
33
--- a/CMakeLists.txt
44
+++ b/CMakeLists.txt
5-
@@ -95,7 +95,6 @@ set(ARDUINO_ALL_LIBRARIES
5+
@@ -88,14 +88,12 @@ set(ARDUINO_ALL_LIBRARIES
6+
LittleFS
7+
NetBIOS
8+
Network
9+
- PPP
10+
Preferences
11+
SD_MMC
12+
SD
613
SPI
714
Ticker
815
Update
916
- USB
1017
WebServer
1118
WiFi
1219
Wire
13-
@@ -149,17 +148,6 @@ set(ARDUINO_LIBRARY_Update_SRCS
20+
@@ -128,10 +126,6 @@ set(ARDUINO_LIBRARY_LittleFS_SRCS libraries/LittleFS/src/LittleFS.cpp)
21+
22+
set(ARDUINO_LIBRARY_NetBIOS_SRCS libraries/NetBIOS/src/NetBIOS.cpp)
23+
24+
-set(ARDUINO_LIBRARY_PPP_SRCS
25+
- libraries/PPP/src/PPP.cpp
26+
- libraries/PPP/src/ppp.c)
27+
-
28+
set(ARDUINO_LIBRARY_Preferences_SRCS libraries/Preferences/src/Preferences.cpp)
29+
30+
set(ARDUINO_LIBRARY_SD_MMC_SRCS libraries/SD_MMC/src/SD_MMC.cpp)
31+
@@ -149,17 +143,6 @@ set(ARDUINO_LIBRARY_Update_SRCS
1432
libraries/Update/src/Updater.cpp
1533
libraries/Update/src/HttpsOTAUpdate.cpp)
1634

@@ -28,7 +46,7 @@ index d3972bf06a..3813da3468 100644
2846
set(ARDUINO_LIBRARY_WebServer_SRCS
2947
libraries/WebServer/src/WebServer.cpp
3048
libraries/WebServer/src/Parsing.cpp
31-
@@ -247,9 +235,6 @@ function(maybe_add_component component_name)
49+
@@ -247,9 +230,6 @@ function(maybe_add_component component_name)
3250
endif()
3351
endfunction()
3452

@@ -38,3 +56,13 @@ index d3972bf06a..3813da3468 100644
3856
if(NOT CONFIG_ARDUINO_SELECTIVE_COMPILATION OR CONFIG_ARDUINO_SELECTIVE_ArduinoOTA)
3957
maybe_add_component(esp_https_ota)
4058
endif()
59+
diff --git a/idf_component.yml b/idf_component.yml
60+
index ae548c41d4..7a4e094050 100644
61+
--- a/idf_component.yml
62+
+++ b/idf_component.yml
63+
@@ -45,5 +45,4 @@ dependencies:
64+
idf: ">=5.1"
65+
# mdns 1.2.3 is necessary to build H2 with no WiFi
66+
mdns: "^1.2.3"
67+
- espressif/esp_modem: "^1.1.0"
68+
joltwallet/littlefs: "^1.14.1"

tools/archive-build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ rm -rf arduino-esp32/libraries/WiFiProv
3636
rm -rf arduino-esp32/libraries/WiFiClientSecure
3737
rm -rf arduino-esp32/libraries/NetworkClientSecure
3838
rm -rf arduino-esp32/libraries/USB
39+
rm -rf arduino-esp32/libraries/PPP
3940
rm -rf arduino-esp32/libraries/ESP_SR
4041
rm -rf arduino-esp32/libraries/ESP_NOW
4142
rm -rf arduino-esp32/libraries/TFLiteMicro

tools/install-arduino.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ rm -rf "$AR_COMPS/arduino/libraries/WiFiProv"
9090
rm -rf "$AR_COMPS/arduino/libraries/WiFiClientSecure"
9191
rm -rf "$AR_COMPS/arduino/libraries/NetworkClientSecure"
9292
rm -rf "$AR_COMPS/arduino/libraries/USB"
93+
rm -rf "$AR_COMPS/arduino/libraries/PPP"
9394
rm -rf "$AR_COMPS/arduino/libraries/ESP32"
9495
rm -rf "$AR_COMPS/arduino/libraries/ESP_SR"
9596
rm -rf "$AR_COMPS/arduino/libraries/ESP_NOW"

0 commit comments

Comments
 (0)