Browse Source

Add an OPENSOURCE option

Signed-off-by: Andrew Andrianov <andrew@ncrmnt.org>
Andrew Andrianov 10 năm trước cách đây
mục cha
commit
2441e964d1
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      Makefile

+ 12 - 0
Makefile

@@ -1,5 +1,6 @@
 TOP=$(PWD)
 TOOLCHAIN=$(TOP)/xtensa-lx106-elf
+OPENSOURCE=n
 
 all: sdk_patch $(TOOLCHAIN)/lib/libhal.a $(TOOLCHAIN)/bin/xtensa-lx106-elf-gcc
 	@echo
@@ -7,8 +8,17 @@ all: sdk_patch $(TOOLCHAIN)/lib/libhal.a $(TOOLCHAIN)/bin/xtensa-lx106-elf-gcc
 	@echo
 	@echo 'export PATH=$(TOOLCHAIN)/bin:$$PATH'
 	@echo
+ifeq ($(OPENSOURCE),y)
+	@echo "Espressif ESP8266 SDK is installed. Toolchain contains only Open Source components"
+	@echo "To link external proprietary libraries add:"
+	@echo
+	@echo "xtensa-lx106-elf-gcc -I$(TOP)/sdk/include -L$(TOP)/sdk/lib"
+	@echo
+else
 	@echo "Espressif ESP8266 SDK is installed, additional blobs are installed into the toolchain"
 	@echo
+endif
+
 
 sdk_patch: sdk/lib/libpp.a
 
@@ -46,10 +56,12 @@ toolchain: esp_iot_sdk_v0.9.2/.dir
 	sed -r -i s%CT_INSTALL_DIR_RO=y%"#"CT_INSTALL_DIR_RO=y% .config
 	echo CT_STATIC_TOOLCHAIN=y >> .config
 	./ct-ng build
+ifneq ($(OPENSOURCE),y)
 	@echo "Installing additional SDK headers"
 	@cp -Rfv sdk/include/* $(TOOLCHAIN)/xtensa-lx106-elf/usr/include/
 	@echo "Installing additional SDK blobs"
 	@cp -Rfv sdk/lib/* $(TOOLCHAIN)/xtensa-lx106-elf/lib/
+endif
 
 crosstool-NG/ct-ng: crosstool-NG/bootstrap
 	make -C crosstool-NG -f ../Makefile ct-ng