update:add luckfox-pico Ultra support

This commit is contained in:
luckfox-eng29
2024-03-16 17:03:10 +08:00
committed by luckfox-eng33
parent 1e160dee55
commit d3153ac97e
234 changed files with 89019 additions and 2435 deletions

View File

@@ -15,9 +15,16 @@ include $(MAKEFILE_DIR)/Makefile.param
################################################################################
app_src := $(wildcard ./*/Makefile)
app_src += $(component_src)
app_src := $(dir $(app_src))
app_src := $(filter-out ./component/,$(app_src))
component_src := $(wildcard ./component/*/Makefile)
all_src += $(component_src)
all_src += $(app_src)
all_src := $(dir $(all_src))
ifeq ($(RK_ENABLE_FASTBOOT),y)
pkg-build := fastboot-build
endif
@@ -32,7 +39,8 @@ fastboot-build:
distclean: clean
clean:
$(foreach target,$(app_src),make clean -C $(target)||exit -1;)
$(foreach target,$(all_src),make clean -C $(target)||exit -1;)
@rm -rf ./wifi_app/wpa_supplicant.conf
@rm -rf $(RK_APP_OUTPUT)
info:

Binary file not shown.

View File

@@ -1,9 +0,0 @@
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
update_config=1
network={
ssid="SSID"
psk="PASSWORD"
key_mgmt=WPA-PSK
}