File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ CFLAGS = $(KBUILD_CFLAGS) $(NOSTDINC_FLAGS) $(ZEPHYRINCLUDE) \
6262
6363include ../py/mkrules.mk
6464
65- $(Z_EXPORTS ) :
65+ $(Z_EXPORTS ) : $( CONF_FILE )
6666 $(MAKE ) -f Makefile.zephyr BOARD=$(BOARD ) CONF_FILE=$(CONF_FILE ) initconfig outputexports
6767
6868GENERIC_TARGETS = all zephyr qemu qemugdb flash debug
@@ -95,3 +95,8 @@ clean: z_clean
9595
9696z_clean :
9797 $(MAKE ) -f Makefile.zephyr BOARD=$(BOARD ) clean
98+
99+ .PHONY : prj.conf
100+ prj.conf : prj_base.conf
101+ cat $< > $@
102+ if [ -f prj_$( BOARD) .conf ]; then cat prj_$( BOARD) .conf >> $@ ; fi
Original file line number Diff line number Diff line change @@ -10,10 +10,3 @@ CONFIG_NETWORKING=y
1010CONFIG_NET_IPV4=y
1111CONFIG_TEST_RANDOM_GENERATOR=y
1212CONFIG_NET_NBUF_RX_COUNT=4
13-
14- # Networking drivers
15- # SLIP driver for QEMU
16- CONFIG_NET_SLIP_TAP=y
17-
18- # BOARD-specific config (qemu_x86)
19- CONFIG_RAM_SIZE=256
Original file line number Diff line number Diff line change 1+ # Networking drivers
2+ # SLIP driver for QEMU
3+ CONFIG_NET_SLIP_TAP=y
4+
5+ # Default RAM easily overflows with uPy and networking
6+ CONFIG_RAM_SIZE=256
You can’t perform that action at this time.
0 commit comments