diff --git a/ChangeLog b/ChangeLog index b6620afc3d..b1a1903df9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. + + diff --git a/configs/avr32dev1/nsh/appconfig b/configs/avr32dev1/nsh/appconfig index 1dc56fabb4..bbfb4a146b 100644 --- a/configs/avr32dev1/nsh/appconfig +++ b/configs/avr32dev1/nsh/appconfig @@ -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 diff --git a/configs/avr32dev1/ostest/appconfig b/configs/avr32dev1/ostest/appconfig index b81d321fa4..e87ca0d13d 100644 --- a/configs/avr32dev1/ostest/appconfig +++ b/configs/avr32dev1/ostest/appconfig @@ -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 diff --git a/configs/c5471evm/httpd/appconfig b/configs/c5471evm/httpd/appconfig index fb6909413d..f08e3f7c9e 100644 --- a/configs/c5471evm/httpd/appconfig +++ b/configs/c5471evm/httpd/appconfig @@ -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 diff --git a/configs/c5471evm/nettest/appconfig b/configs/c5471evm/nettest/appconfig index 351987da60..f1050ef733 100644 --- a/configs/c5471evm/nettest/appconfig +++ b/configs/c5471evm/nettest/appconfig @@ -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 diff --git a/configs/c5471evm/nsh/appconfig b/configs/c5471evm/nsh/appconfig index 7cef43dc46..fa3a2c2ad5 100644 --- a/configs/c5471evm/nsh/appconfig +++ b/configs/c5471evm/nsh/appconfig @@ -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 diff --git a/configs/c5471evm/ostest/appconfig b/configs/c5471evm/ostest/appconfig index 3e025698c7..97e30c0f8e 100644 --- a/configs/c5471evm/ostest/appconfig +++ b/configs/c5471evm/ostest/appconfig @@ -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 diff --git a/configs/demo9s12ne64/ostest/appconfig b/configs/demo9s12ne64/ostest/appconfig index a800665c29..0fcb806263 100644 --- a/configs/demo9s12ne64/ostest/appconfig +++ b/configs/demo9s12ne64/ostest/appconfig @@ -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 diff --git a/configs/detron/hidkbd/appconfig b/configs/detron/hidkbd/appconfig index 0379e253ec..ee9ea1277e 100644 --- a/configs/detron/hidkbd/appconfig +++ b/configs/detron/hidkbd/appconfig @@ -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 diff --git a/configs/detron/nsh/appconfig b/configs/detron/nsh/appconfig index f0e6ba334f..37b8a87fae 100644 --- a/configs/detron/nsh/appconfig +++ b/configs/detron/nsh/appconfig @@ -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 diff --git a/configs/detron/ostest/appconfig b/configs/detron/ostest/appconfig index a9566f416e..c3525c0ae3 100644 --- a/configs/detron/ostest/appconfig +++ b/configs/detron/ostest/appconfig @@ -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 diff --git a/configs/detron/wlan/appconfig b/configs/detron/wlan/appconfig index b171bebcb5..d529420492 100644 --- a/configs/detron/wlan/appconfig +++ b/configs/detron/wlan/appconfig @@ -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 diff --git a/configs/ea3131/nsh/appconfig b/configs/ea3131/nsh/appconfig index 5dd67d585b..e73b23898e 100644 --- a/configs/ea3131/nsh/appconfig +++ b/configs/ea3131/nsh/appconfig @@ -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 diff --git a/configs/ea3131/ostest/appconfig b/configs/ea3131/ostest/appconfig index 12382df554..aa56dd4c1c 100644 --- a/configs/ea3131/ostest/appconfig +++ b/configs/ea3131/ostest/appconfig @@ -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 diff --git a/configs/ea3131/pgnsh/appconfig b/configs/ea3131/pgnsh/appconfig index 33acab58e2..0f44c45397 100644 --- a/configs/ea3131/pgnsh/appconfig +++ b/configs/ea3131/pgnsh/appconfig @@ -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 diff --git a/configs/ea3131/usbserial/appconfig b/configs/ea3131/usbserial/appconfig index c0721520ca..32c385dc89 100644 --- a/configs/ea3131/usbserial/appconfig +++ b/configs/ea3131/usbserial/appconfig @@ -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 diff --git a/configs/ea3131/usbstorage/appconfig b/configs/ea3131/usbstorage/appconfig index 097d44ced7..9022fd3ad1 100644 --- a/configs/ea3131/usbstorage/appconfig +++ b/configs/ea3131/usbstorage/appconfig @@ -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 diff --git a/configs/eagle100/httpd/appconfig b/configs/eagle100/httpd/appconfig index be6817d959..adfe0291bf 100644 --- a/configs/eagle100/httpd/appconfig +++ b/configs/eagle100/httpd/appconfig @@ -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 diff --git a/configs/eagle100/nettest/appconfig b/configs/eagle100/nettest/appconfig index 14df918167..9c6b568247 100644 --- a/configs/eagle100/nettest/appconfig +++ b/configs/eagle100/nettest/appconfig @@ -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 diff --git a/configs/eagle100/nsh/appconfig b/configs/eagle100/nsh/appconfig index 8879488daf..43be4b653b 100644 --- a/configs/eagle100/nsh/appconfig +++ b/configs/eagle100/nsh/appconfig @@ -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 diff --git a/configs/eagle100/nxflat/appconfig b/configs/eagle100/nxflat/appconfig index fb40ad5224..dae39407d2 100644 --- a/configs/eagle100/nxflat/appconfig +++ b/configs/eagle100/nxflat/appconfig @@ -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 diff --git a/configs/eagle100/ostest/appconfig b/configs/eagle100/ostest/appconfig index cfb2f1dabd..7bf44797ad 100644 --- a/configs/eagle100/ostest/appconfig +++ b/configs/eagle100/ostest/appconfig @@ -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 diff --git a/configs/eagle100/thttpd/appconfig b/configs/eagle100/thttpd/appconfig index 9be24790fb..e692157372 100644 --- a/configs/eagle100/thttpd/appconfig +++ b/configs/eagle100/thttpd/appconfig @@ -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 diff --git a/configs/ez80f910200kitg/ostest/appconfig b/configs/ez80f910200kitg/ostest/appconfig index 127a5b4ca5..68892459ca 100644 --- a/configs/ez80f910200kitg/ostest/appconfig +++ b/configs/ez80f910200kitg/ostest/appconfig @@ -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 diff --git a/configs/ez80f910200zco/dhcpd/appconfig b/configs/ez80f910200zco/dhcpd/appconfig index 9c35c100d6..d8d8d7af3e 100644 --- a/configs/ez80f910200zco/dhcpd/appconfig +++ b/configs/ez80f910200zco/dhcpd/appconfig @@ -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 diff --git a/configs/ez80f910200zco/httpd/appconfig b/configs/ez80f910200zco/httpd/appconfig index 15f42ea01e..33d384dfe4 100644 --- a/configs/ez80f910200zco/httpd/appconfig +++ b/configs/ez80f910200zco/httpd/appconfig @@ -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 diff --git a/configs/ez80f910200zco/nettest/appconfig b/configs/ez80f910200zco/nettest/appconfig index 32cb840ecd..f02619a796 100644 --- a/configs/ez80f910200zco/nettest/appconfig +++ b/configs/ez80f910200zco/nettest/appconfig @@ -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 diff --git a/configs/ez80f910200zco/nsh/appconfig b/configs/ez80f910200zco/nsh/appconfig index edc9e3d9c3..7cc90d549a 100644 --- a/configs/ez80f910200zco/nsh/appconfig +++ b/configs/ez80f910200zco/nsh/appconfig @@ -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 diff --git a/configs/ez80f910200zco/ostest/appconfig b/configs/ez80f910200zco/ostest/appconfig index e461a8cc26..6d2ad84ae1 100644 --- a/configs/ez80f910200zco/ostest/appconfig +++ b/configs/ez80f910200zco/ostest/appconfig @@ -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 diff --git a/configs/ez80f910200zco/poll/appconfig b/configs/ez80f910200zco/poll/appconfig index e01f62cc7b..181f2e1dbd 100644 --- a/configs/ez80f910200zco/poll/appconfig +++ b/configs/ez80f910200zco/poll/appconfig @@ -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 diff --git a/configs/lm3s6965-ek/nsh/appconfig b/configs/lm3s6965-ek/nsh/appconfig index 9e6be6aecd..507d2eaa3b 100644 --- a/configs/lm3s6965-ek/nsh/appconfig +++ b/configs/lm3s6965-ek/nsh/appconfig @@ -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 diff --git a/configs/lm3s6965-ek/nx/appconfig b/configs/lm3s6965-ek/nx/appconfig index 590dc5e64c..c7fbe82ee3 100644 --- a/configs/lm3s6965-ek/nx/appconfig +++ b/configs/lm3s6965-ek/nx/appconfig @@ -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 diff --git a/configs/lm3s6965-ek/ostest/appconfig b/configs/lm3s6965-ek/ostest/appconfig index 4ad0dfdde7..1e12db1f02 100644 --- a/configs/lm3s6965-ek/ostest/appconfig +++ b/configs/lm3s6965-ek/ostest/appconfig @@ -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 diff --git a/configs/lm3s8962-ek/nsh/appconfig b/configs/lm3s8962-ek/nsh/appconfig index 3dd2ecbcc1..013899a9f2 100644 --- a/configs/lm3s8962-ek/nsh/appconfig +++ b/configs/lm3s8962-ek/nsh/appconfig @@ -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 diff --git a/configs/lm3s8962-ek/nx/appconfig b/configs/lm3s8962-ek/nx/appconfig index 8d1a5fe764..1c730279b2 100644 --- a/configs/lm3s8962-ek/nx/appconfig +++ b/configs/lm3s8962-ek/nx/appconfig @@ -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 diff --git a/configs/lm3s8962-ek/ostest/appconfig b/configs/lm3s8962-ek/ostest/appconfig index 4c38cd11c4..3ff28ef03e 100644 --- a/configs/lm3s8962-ek/ostest/appconfig +++ b/configs/lm3s8962-ek/ostest/appconfig @@ -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 diff --git a/configs/m68332evb/appconfig b/configs/m68332evb/appconfig index 7acbc745ae..779ae93052 100644 --- a/configs/m68332evb/appconfig +++ b/configs/m68332evb/appconfig @@ -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 diff --git a/configs/mbed/hidkbd/appconfig b/configs/mbed/hidkbd/appconfig index 10058b0792..820167020e 100644 --- a/configs/mbed/hidkbd/appconfig +++ b/configs/mbed/hidkbd/appconfig @@ -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 diff --git a/configs/mbed/nsh/appconfig b/configs/mbed/nsh/appconfig index 14ab50989a..5deb34150e 100644 --- a/configs/mbed/nsh/appconfig +++ b/configs/mbed/nsh/appconfig @@ -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 diff --git a/configs/mcu123-lpc214x/nsh/appconfig b/configs/mcu123-lpc214x/nsh/appconfig index 563f5185d9..e27ab3fc97 100644 --- a/configs/mcu123-lpc214x/nsh/appconfig +++ b/configs/mcu123-lpc214x/nsh/appconfig @@ -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 diff --git a/configs/mcu123-lpc214x/ostest/appconfig b/configs/mcu123-lpc214x/ostest/appconfig index cc3e248cec..7086a745ea 100644 --- a/configs/mcu123-lpc214x/ostest/appconfig +++ b/configs/mcu123-lpc214x/ostest/appconfig @@ -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 diff --git a/configs/mcu123-lpc214x/usbserial/appconfig b/configs/mcu123-lpc214x/usbserial/appconfig index 14fba8c4d0..d4cf7893da 100644 --- a/configs/mcu123-lpc214x/usbserial/appconfig +++ b/configs/mcu123-lpc214x/usbserial/appconfig @@ -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 diff --git a/configs/mcu123-lpc214x/usbstorage/appconfig b/configs/mcu123-lpc214x/usbstorage/appconfig index 019d8512da..ffc6bb8206 100644 --- a/configs/mcu123-lpc214x/usbstorage/appconfig +++ b/configs/mcu123-lpc214x/usbstorage/appconfig @@ -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 diff --git a/configs/mx1ads/ostest/appconfig b/configs/mx1ads/ostest/appconfig index d2f334e9d2..0f761bdb7d 100644 --- a/configs/mx1ads/ostest/appconfig +++ b/configs/mx1ads/ostest/appconfig @@ -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 diff --git a/configs/ne64badge/ostest/appconfig b/configs/ne64badge/ostest/appconfig index e4779070be..185e346d88 100644 --- a/configs/ne64badge/ostest/appconfig +++ b/configs/ne64badge/ostest/appconfig @@ -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 diff --git a/configs/ntosd-dm320/nettest/appconfig b/configs/ntosd-dm320/nettest/appconfig index d3d81d10d9..6e57e8bd0b 100644 --- a/configs/ntosd-dm320/nettest/appconfig +++ b/configs/ntosd-dm320/nettest/appconfig @@ -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 diff --git a/configs/ntosd-dm320/nsh/appconfig b/configs/ntosd-dm320/nsh/appconfig index 9265c380e9..bd93bee6cc 100644 --- a/configs/ntosd-dm320/nsh/appconfig +++ b/configs/ntosd-dm320/nsh/appconfig @@ -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 diff --git a/configs/ntosd-dm320/ostest/appconfig b/configs/ntosd-dm320/ostest/appconfig index e5685746ac..1c5f6ab7b8 100644 --- a/configs/ntosd-dm320/ostest/appconfig +++ b/configs/ntosd-dm320/ostest/appconfig @@ -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 diff --git a/configs/ntosd-dm320/poll/appconfig b/configs/ntosd-dm320/poll/appconfig index a3f36a6fbb..ff5abf976a 100644 --- a/configs/ntosd-dm320/poll/appconfig +++ b/configs/ntosd-dm320/poll/appconfig @@ -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 diff --git a/configs/ntosd-dm320/thttpd/appconfig b/configs/ntosd-dm320/thttpd/appconfig index 1b6a1f695d..1a0b0718ee 100644 --- a/configs/ntosd-dm320/thttpd/appconfig +++ b/configs/ntosd-dm320/thttpd/appconfig @@ -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 diff --git a/configs/ntosd-dm320/udp/appconfig b/configs/ntosd-dm320/udp/appconfig index 4b34f37fdb..30e21e1850 100644 --- a/configs/ntosd-dm320/udp/appconfig +++ b/configs/ntosd-dm320/udp/appconfig @@ -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 diff --git a/configs/ntosd-dm320/uip/appconfig b/configs/ntosd-dm320/uip/appconfig index 4077afd14f..cfd75d6a89 100644 --- a/configs/ntosd-dm320/uip/appconfig +++ b/configs/ntosd-dm320/uip/appconfig @@ -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 diff --git a/configs/nucleus2g/nsh/appconfig b/configs/nucleus2g/nsh/appconfig index d79c94ebbd..5b622236dd 100644 --- a/configs/nucleus2g/nsh/appconfig +++ b/configs/nucleus2g/nsh/appconfig @@ -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 diff --git a/configs/nucleus2g/ostest/appconfig b/configs/nucleus2g/ostest/appconfig index 00f6e309b3..32b848f2d7 100644 --- a/configs/nucleus2g/ostest/appconfig +++ b/configs/nucleus2g/ostest/appconfig @@ -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 diff --git a/configs/nucleus2g/usbserial/appconfig b/configs/nucleus2g/usbserial/appconfig index 6e1c908a5c..dffbbd1fb5 100644 --- a/configs/nucleus2g/usbserial/appconfig +++ b/configs/nucleus2g/usbserial/appconfig @@ -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 diff --git a/configs/nucleus2g/usbstorage/appconfig b/configs/nucleus2g/usbstorage/appconfig index 32a5b2d31f..24b3343490 100644 --- a/configs/nucleus2g/usbstorage/appconfig +++ b/configs/nucleus2g/usbstorage/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/hidkbd/appconfig b/configs/olimex-lpc1766stk/hidkbd/appconfig index 861d756543..74c5006134 100644 --- a/configs/olimex-lpc1766stk/hidkbd/appconfig +++ b/configs/olimex-lpc1766stk/hidkbd/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/nettest/appconfig b/configs/olimex-lpc1766stk/nettest/appconfig index 3c6bb4729a..d90b6e2e90 100644 --- a/configs/olimex-lpc1766stk/nettest/appconfig +++ b/configs/olimex-lpc1766stk/nettest/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/nsh/appconfig b/configs/olimex-lpc1766stk/nsh/appconfig index e8bb51cb89..7a2321613a 100644 --- a/configs/olimex-lpc1766stk/nsh/appconfig +++ b/configs/olimex-lpc1766stk/nsh/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/nx/appconfig b/configs/olimex-lpc1766stk/nx/appconfig index 7c6a694787..37c3b34d62 100644 --- a/configs/olimex-lpc1766stk/nx/appconfig +++ b/configs/olimex-lpc1766stk/nx/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/ostest/appconfig b/configs/olimex-lpc1766stk/ostest/appconfig index b046927b3e..fd93a1e657 100644 --- a/configs/olimex-lpc1766stk/ostest/appconfig +++ b/configs/olimex-lpc1766stk/ostest/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/slip-httpd/appconfig b/configs/olimex-lpc1766stk/slip-httpd/appconfig index 9be22e90e0..1bc609e76e 100644 --- a/configs/olimex-lpc1766stk/slip-httpd/appconfig +++ b/configs/olimex-lpc1766stk/slip-httpd/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/thttpd/appconfig b/configs/olimex-lpc1766stk/thttpd/appconfig index 6eea7ea591..3cfb758390 100644 --- a/configs/olimex-lpc1766stk/thttpd/appconfig +++ b/configs/olimex-lpc1766stk/thttpd/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/usbserial/appconfig b/configs/olimex-lpc1766stk/usbserial/appconfig index 49cc61e039..5126ff19e0 100644 --- a/configs/olimex-lpc1766stk/usbserial/appconfig +++ b/configs/olimex-lpc1766stk/usbserial/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/usbstorage/appconfig b/configs/olimex-lpc1766stk/usbstorage/appconfig index d4f33077e1..6b56f9785f 100644 --- a/configs/olimex-lpc1766stk/usbstorage/appconfig +++ b/configs/olimex-lpc1766stk/usbstorage/appconfig @@ -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 diff --git a/configs/olimex-lpc1766stk/wlan/appconfig b/configs/olimex-lpc1766stk/wlan/appconfig index 2a9f4be407..652db8f2d1 100644 --- a/configs/olimex-lpc1766stk/wlan/appconfig +++ b/configs/olimex-lpc1766stk/wlan/appconfig @@ -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 diff --git a/configs/olimex-lpc2378/nsh/appconfig b/configs/olimex-lpc2378/nsh/appconfig index 786a7de6a8..d262c7c636 100644 --- a/configs/olimex-lpc2378/nsh/appconfig +++ b/configs/olimex-lpc2378/nsh/appconfig @@ -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 diff --git a/configs/olimex-lpc2378/ostest/appconfig b/configs/olimex-lpc2378/ostest/appconfig index 0ef4b7e336..2669ab4325 100644 --- a/configs/olimex-lpc2378/ostest/appconfig +++ b/configs/olimex-lpc2378/ostest/appconfig @@ -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 diff --git a/configs/olimex-strp711/nettest/appconfig b/configs/olimex-strp711/nettest/appconfig index 911f28d76a..68aa1f56b1 100644 --- a/configs/olimex-strp711/nettest/appconfig +++ b/configs/olimex-strp711/nettest/appconfig @@ -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 diff --git a/configs/olimex-strp711/nsh/appconfig b/configs/olimex-strp711/nsh/appconfig index 44287d579b..d5be8ec02c 100644 --- a/configs/olimex-strp711/nsh/appconfig +++ b/configs/olimex-strp711/nsh/appconfig @@ -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 diff --git a/configs/olimex-strp711/ostest/appconfig b/configs/olimex-strp711/ostest/appconfig index b6eb6f864d..52724f1cfe 100644 --- a/configs/olimex-strp711/ostest/appconfig +++ b/configs/olimex-strp711/ostest/appconfig @@ -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 diff --git a/configs/pjrc-8051/appconfig b/configs/pjrc-8051/appconfig index 80d1dccef1..d88edca753 100644 --- a/configs/pjrc-8051/appconfig +++ b/configs/pjrc-8051/appconfig @@ -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 diff --git a/configs/qemu-i486/nsh/appconfig b/configs/qemu-i486/nsh/appconfig index 3e174024e0..bb90c0897c 100644 --- a/configs/qemu-i486/nsh/appconfig +++ b/configs/qemu-i486/nsh/appconfig @@ -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 diff --git a/configs/qemu-i486/ostest/appconfig b/configs/qemu-i486/ostest/appconfig index f469153b60..73b5540a09 100644 --- a/configs/qemu-i486/ostest/appconfig +++ b/configs/qemu-i486/ostest/appconfig @@ -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 diff --git a/configs/sam3u-ek/nsh/appconfig b/configs/sam3u-ek/nsh/appconfig index 67b7d9adf3..3bddd21277 100644 --- a/configs/sam3u-ek/nsh/appconfig +++ b/configs/sam3u-ek/nsh/appconfig @@ -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 diff --git a/configs/sam3u-ek/nx/appconfig b/configs/sam3u-ek/nx/appconfig index 2f44523d02..8c5e733743 100644 --- a/configs/sam3u-ek/nx/appconfig +++ b/configs/sam3u-ek/nx/appconfig @@ -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 diff --git a/configs/sam3u-ek/ostest/appconfig b/configs/sam3u-ek/ostest/appconfig index 6ffa16baaf..b46e563e57 100644 --- a/configs/sam3u-ek/ostest/appconfig +++ b/configs/sam3u-ek/ostest/appconfig @@ -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 diff --git a/configs/sim/mount/appconfig b/configs/sim/mount/appconfig index bec676b94e..47fb2cabc8 100644 --- a/configs/sim/mount/appconfig +++ b/configs/sim/mount/appconfig @@ -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 diff --git a/configs/sim/nettest/appconfig b/configs/sim/nettest/appconfig index 59f0091e92..a123273d77 100644 --- a/configs/sim/nettest/appconfig +++ b/configs/sim/nettest/appconfig @@ -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 diff --git a/configs/sim/nsh/appconfig b/configs/sim/nsh/appconfig index 888943ed8c..0cf77dd6df 100644 --- a/configs/sim/nsh/appconfig +++ b/configs/sim/nsh/appconfig @@ -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 diff --git a/configs/sim/nx/appconfig b/configs/sim/nx/appconfig index ee581c7b52..12a1f4ac9c 100644 --- a/configs/sim/nx/appconfig +++ b/configs/sim/nx/appconfig @@ -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 diff --git a/configs/sim/ostest/appconfig b/configs/sim/ostest/appconfig index f622d89587..77707484ea 100644 --- a/configs/sim/ostest/appconfig +++ b/configs/sim/ostest/appconfig @@ -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 diff --git a/configs/sim/pashello/appconfig b/configs/sim/pashello/appconfig index 548c553dce..30d83caaf4 100644 --- a/configs/sim/pashello/appconfig +++ b/configs/sim/pashello/appconfig @@ -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 diff --git a/configs/skp16c26/ostest/appconfig b/configs/skp16c26/ostest/appconfig index eaaf4ad206..ad98de5db0 100644 --- a/configs/skp16c26/ostest/appconfig +++ b/configs/skp16c26/ostest/appconfig @@ -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 diff --git a/configs/stm3210e-eval/RIDE/appconfig b/configs/stm3210e-eval/RIDE/appconfig index 3aa7f108b6..b40f864aa3 100644 --- a/configs/stm3210e-eval/RIDE/appconfig +++ b/configs/stm3210e-eval/RIDE/appconfig @@ -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 diff --git a/configs/stm3210e-eval/nsh/appconfig b/configs/stm3210e-eval/nsh/appconfig index 18fbe696c8..1817139f56 100644 --- a/configs/stm3210e-eval/nsh/appconfig +++ b/configs/stm3210e-eval/nsh/appconfig @@ -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 diff --git a/configs/stm3210e-eval/ostest/appconfig b/configs/stm3210e-eval/ostest/appconfig index 37459a0256..68c1f9c0d0 100644 --- a/configs/stm3210e-eval/ostest/appconfig +++ b/configs/stm3210e-eval/ostest/appconfig @@ -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 diff --git a/configs/stm3210e-eval/usbserial/appconfig b/configs/stm3210e-eval/usbserial/appconfig index 11fc30ea55..00a928b56c 100644 --- a/configs/stm3210e-eval/usbserial/appconfig +++ b/configs/stm3210e-eval/usbserial/appconfig @@ -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 diff --git a/configs/stm3210e-eval/usbstorage/appconfig b/configs/stm3210e-eval/usbstorage/appconfig index 675da6f076..b487fdfdd5 100644 --- a/configs/stm3210e-eval/usbstorage/appconfig +++ b/configs/stm3210e-eval/usbstorage/appconfig @@ -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 diff --git a/configs/us7032evb1/nsh/appconfig b/configs/us7032evb1/nsh/appconfig index 619c94d57e..5b09997430 100644 --- a/configs/us7032evb1/nsh/appconfig +++ b/configs/us7032evb1/nsh/appconfig @@ -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 diff --git a/configs/us7032evb1/ostest/appconfig b/configs/us7032evb1/ostest/appconfig index 426122f8ba..6381f59bc1 100644 --- a/configs/us7032evb1/ostest/appconfig +++ b/configs/us7032evb1/ostest/appconfig @@ -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 diff --git a/configs/vsn/nsh/appconfig b/configs/vsn/nsh/appconfig index 42f4a9ec84..5667e87fde 100755 --- a/configs/vsn/nsh/appconfig +++ b/configs/vsn/nsh/appconfig @@ -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 diff --git a/configs/xtrs/nsh/appconfig b/configs/xtrs/nsh/appconfig index cccf7511e5..15f01ba072 100644 --- a/configs/xtrs/nsh/appconfig +++ b/configs/xtrs/nsh/appconfig @@ -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 diff --git a/configs/xtrs/ostest/appconfig b/configs/xtrs/ostest/appconfig index 8ec6d8f096..906020daed 100644 --- a/configs/xtrs/ostest/appconfig +++ b/configs/xtrs/ostest/appconfig @@ -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 diff --git a/configs/xtrs/pashello/appconfig b/configs/xtrs/pashello/appconfig index 6a078b0ae3..cb1af14a30 100644 --- a/configs/xtrs/pashello/appconfig +++ b/configs/xtrs/pashello/appconfig @@ -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 diff --git a/configs/z16f2800100zcog/ostest/appconfig b/configs/z16f2800100zcog/ostest/appconfig index 50b3ace707..627b24deb8 100644 --- a/configs/z16f2800100zcog/ostest/appconfig +++ b/configs/z16f2800100zcog/ostest/appconfig @@ -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 diff --git a/configs/z16f2800100zcog/pashello/appconfig b/configs/z16f2800100zcog/pashello/appconfig index 63244367ed..f77eca16a5 100644 --- a/configs/z16f2800100zcog/pashello/appconfig +++ b/configs/z16f2800100zcog/pashello/appconfig @@ -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 diff --git a/configs/z80sim/nsh/appconfig b/configs/z80sim/nsh/appconfig index 304744fb23..4f7e183ac3 100644 --- a/configs/z80sim/nsh/appconfig +++ b/configs/z80sim/nsh/appconfig @@ -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 diff --git a/configs/z80sim/ostest/appconfig b/configs/z80sim/ostest/appconfig index 25fcf62d3d..e4dda3c780 100644 --- a/configs/z80sim/ostest/appconfig +++ b/configs/z80sim/ostest/appconfig @@ -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 diff --git a/configs/z80sim/pashello/appconfig b/configs/z80sim/pashello/appconfig index b772867303..b08323b164 100644 --- a/configs/z80sim/pashello/appconfig +++ b/configs/z80sim/pashello/appconfig @@ -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 diff --git a/configs/z8encore000zco/ostest/appconfig b/configs/z8encore000zco/ostest/appconfig index a8e0ac5893..cf434eea6f 100644 --- a/configs/z8encore000zco/ostest/appconfig +++ b/configs/z8encore000zco/ostest/appconfig @@ -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 diff --git a/configs/z8f64200100kit/ostest/appconfig b/configs/z8f64200100kit/ostest/appconfig index b039bee7cd..77aa777279 100644 --- a/configs/z8f64200100kit/ostest/appconfig +++ b/configs/z8f64200100kit/ostest/appconfig @@ -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