esp8266: Convert to use FROZEN_MANIFEST to specify frozen code.

Removes symlinks in modules directory, all frozen code is now specified by
manifest.py.
This commit is contained in:
Damien George 2019-10-10 23:01:29 +11:00
parent b1c0355b93
commit 2fd3f2520d
7 changed files with 10 additions and 10 deletions

View File

@ -26,8 +26,9 @@ MICROPY_FATFS ?= 1
MICROPY_PY_BTREE ?= 1
BTREE_DEFS_EXTRA = -DDEFPSIZE=1024 -DMINCACHE=3
FROZEN_DIR ?= scripts
FROZEN_MPY_DIR ?= modules
FROZEN_MANIFEST ?= boards/manifest.py
FROZEN_DIR ?=
FROZEN_MPY_DIR ?=
# include py core make definitions
include $(TOP)/py/py.mk
@ -179,9 +180,9 @@ CONFVARS_FILE = $(BUILD)/confvars
ifeq ($(wildcard $(CONFVARS_FILE)),)
$(shell $(MKDIR) -p $(BUILD))
$(shell echo $(FROZEN_DIR) $(UART_OS) > $(CONFVARS_FILE))
else ifneq ($(shell cat $(CONFVARS_FILE)), $(FROZEN_DIR) $(UART_OS))
$(shell echo $(FROZEN_DIR) $(UART_OS) > $(CONFVARS_FILE))
$(shell echo $(FROZEN_MANIFEST) $(UART_OS) > $(CONFVARS_FILE))
else ifneq ($(shell cat $(CONFVARS_FILE)), $(FROZEN_MANIFEST) $(UART_OS))
$(shell echo $(FROZEN_MANIFEST) $(UART_OS) > $(CONFVARS_FILE))
endif
$(BUILD)/uart.o: $(CONFVARS_FILE)

View File

@ -0,0 +1,4 @@
freeze('modules')
freeze('$(MPY)/tools', ('upip.py', 'upip_utarfile.py'))
freeze('$(MPY)/drivers/dht', 'dht.py')
freeze('$(MPY)/drivers/onewire')

View File

@ -1 +0,0 @@
../../../drivers/dht/dht.py

View File

@ -1 +0,0 @@
../../../drivers/onewire/ds18x20.py

View File

@ -1 +0,0 @@
../../../drivers/onewire/onewire.py

View File

@ -1 +0,0 @@
../../../tools/upip.py

View File

@ -1 +0,0 @@
../../../tools/upip_utarfile.py