Remove .built_always
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3449 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
98510712fd
commit
723c94deee
@ -1635,3 +1635,12 @@
|
||||
* syscall/: The beginnings of an optional syscall kernal interface.
|
||||
* tools/mksyscall.c: Add a tool that will auto-generate syscall proxies
|
||||
and stubs from a comma-separated-value (CSV) data file.
|
||||
* arch/arm/src/cortexm3/mpu.h: Add a header file describing the Cortex-M3
|
||||
MPU registers.
|
||||
* Numerous modifications to the build system. Various people have reported
|
||||
build problems since the re-organization and release of NuttX-6.0. I am
|
||||
unable to replicate the build problems in my environment, but the changes
|
||||
have be incorporated in hope of correcting the build issues in other
|
||||
environments.
|
||||
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH Library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,12 +35,12 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/uip=.built_always
|
||||
CONFIGURED_APPS += examples/uip
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/webserver=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/webserver
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/hidkbd=.built_always
|
||||
CONFIGURED_APPS += examples/hidkbd
|
||||
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/wlan=.built_always
|
||||
CONFIGURED_APPS += examples/wlan
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,10 +35,10 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbserial=.built_always
|
||||
CONFIGURED_APPS += examples/usbserial
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbstorage=.built_always
|
||||
CONFIGURED_APPS += examples/usbstorage
|
||||
|
||||
|
@ -35,12 +35,12 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/uip=.built_always
|
||||
CONFIGURED_APPS += examples/uip
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/webserver=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/webserver
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH Library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nxflat=.built_always
|
||||
CONFIGURED_APPS += examples/nxflat
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,10 +35,10 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/thttpd=.built_always
|
||||
CONFIGURED_APPS += examples/thttpd
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/thttpd=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/thttpd
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,10 +35,10 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/dhcpd=.built_always
|
||||
CONFIGURED_APPS += examples/dhcpd
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpd=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpd
|
||||
|
@ -35,13 +35,13 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/uip=.built_always
|
||||
CONFIGURED_APPS += examples/uip
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/webserver=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/webserver
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/poll=.built_always
|
||||
CONFIGURED_APPS += examples/poll
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nx=.built_always
|
||||
CONFIGURED_APPS += examples/nx
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nx=.built_always
|
||||
CONFIGURED_APPS += examples/nx
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/hidkbd=.built_always
|
||||
CONFIGURED_APPS += examples/hidkbd
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH Library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbserial=.built_always
|
||||
CONFIGURED_APPS += examples/usbserial
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbstorage=.built_always
|
||||
CONFIGURED_APPS += examples/usbstorage
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/poll=.built_always
|
||||
CONFIGURED_APPS += examples/poll
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,10 +35,10 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/thttpd=.built_always
|
||||
CONFIGURED_APPS += examples/thttpd
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/thttpd=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/thttpd
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/udp=.built_always
|
||||
CONFIGURED_APPS += examples/udp
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,12 +35,12 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/uip=.built_always
|
||||
CONFIGURED_APPS += examples/uip
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/webserver=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/webserver
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbserial=.built_always
|
||||
CONFIGURED_APPS += examples/usbserial
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbstorage=.built_always
|
||||
CONFIGURED_APPS += examples/usbstorage
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/hidkbd=.built_always
|
||||
CONFIGURED_APPS += examples/hidkbd
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,20 +35,20 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Networking support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/dhcpc=.built_always
|
||||
CONFIGURED_APPS += netutils/resolv=.built_always
|
||||
CONFIGURED_APPS += netutils/tftpc=.built_always
|
||||
CONFIGURED_APPS += netutils/webclient=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/dhcpc
|
||||
CONFIGURED_APPS += netutils/resolv
|
||||
CONFIGURED_APPS += netutils/tftpc
|
||||
CONFIGURED_APPS += netutils/webclient
|
||||
endif
|
||||
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nx=.built_always
|
||||
CONFIGURED_APPS += examples/nx
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,10 +35,10 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/thttpd=.built_always
|
||||
CONFIGURED_APPS += examples/thttpd
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/thttpd=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/thttpd
|
||||
|
@ -35,10 +35,10 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/thttpd=.built_always
|
||||
CONFIGURED_APPS += examples/thttpd
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/thttpd=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
CONFIGURED_APPS += netutils/thttpd
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbserial=.built_always
|
||||
CONFIGURED_APPS += examples/usbserial
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbstorage=.built_always
|
||||
CONFIGURED_APPS += examples/usbstorage
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/wlan=.built_always
|
||||
CONFIGURED_APPS += examples/wlan
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nx=.built_always
|
||||
CONFIGURED_APPS += examples/nx
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/mount=.built_always
|
||||
CONFIGURED_APPS += examples/mount
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nettest=.built_always
|
||||
CONFIGURED_APPS += examples/nettest
|
||||
|
||||
|
||||
# Networking support
|
||||
|
||||
CONFIGURED_APPS += netutils/uiplib=.built_always
|
||||
CONFIGURED_APPS += netutils/uiplib
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH Library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nx=.built_always
|
||||
CONFIGURED_APPS += examples/nx
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/pashello=.built_always
|
||||
CONFIGURED_APPS += examples/pashello
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/null=.built_always
|
||||
CONFIGURED_APPS += examples/null
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbserial=.built_always
|
||||
CONFIGURED_APPS += examples/usbserial
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/usbstorage=.built_always
|
||||
CONFIGURED_APPS += examples/usbstorage
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -44,32 +44,32 @@
|
||||
#
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# Invoke the following application after NuttX starts
|
||||
#CONFIG_BUILTIN_APP_START="hello"
|
||||
|
||||
# Application Libraries
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
# Individual selection of built-in applications:
|
||||
|
||||
# Hello world provide a simple skeleton/demo application
|
||||
CONFIGURED_APPS += vsn/hello=.built_always
|
||||
CONFIGURED_APPS += vsn/hello
|
||||
|
||||
# Provide poweroff command to switch off the board
|
||||
CONFIGURED_APPS += vsn/poweroff=.built_always
|
||||
CONFIGURED_APPS += vsn/poweroff
|
||||
|
||||
# Provide SDcard tool
|
||||
CONFIGURED_APPS += vsn/sdcard=.built_always
|
||||
CONFIGURED_APPS += vsn/sdcard
|
||||
|
||||
# Provide RAMTRON tool
|
||||
CONFIGURED_APPS += vsn/ramtron=.built_always
|
||||
CONFIGURED_APPS += vsn/ramtron
|
||||
|
||||
# Provide UNIX style free
|
||||
CONFIGURED_APPS += vsn/free=.built_always
|
||||
CONFIGURED_APPS += vsn/free
|
||||
|
||||
# Provide JAVA Virtual Machine (the Darjeeling JVM)
|
||||
#CONFIGURED_APPS += vsn/jvm=.built_always
|
||||
#CONFIGURED_APPS += vsn/jvm
|
||||
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH Library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/pashello=.built_always
|
||||
CONFIGURED_APPS += examples/pashello
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/pashello=.built_always
|
||||
CONFIGURED_APPS += examples/pashello
|
||||
|
||||
|
@ -35,9 +35,9 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/nsh=.built_always
|
||||
CONFIGURED_APPS += examples/nsh
|
||||
|
||||
# The NSH Library
|
||||
|
||||
CONFIGURED_APPS += nshlib=.built_always
|
||||
CONFIGURED_APPS += nshlib
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/ostest=.built_always
|
||||
CONFIGURED_APPS += examples/ostest
|
||||
|
||||
|
@ -35,5 +35,5 @@
|
||||
|
||||
# Path to example in apps/examples containing the user_start entry point
|
||||
|
||||
CONFIGURED_APPS += examples/pashello=.built_always
|
||||
CONFIGURED_APPS += examples/pashello
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user