Gregory Nutt
3a23523147
Makefiles: This reverts part of commit cf0365ea9
. It restores 'conditional' inclusion of TOPDIR/Make.defs. Otherwise all make targets fail if the board has not been configured. That is okay most of the time, but not for things like clean and distclean which should not depend on being configured.
2019-10-15 09:25:48 +08:00
Xiang Xiao
31a7b99f9c
apps.: Remove the inappropriate NSH_BUILTIN_APPS coupling
...
1. Check NSH_NETINIT for self network initialization
2. Check NSH_ARCHINIT for sel arch specific initialization
3. Always show help regardless of NSH_BUILTIN_APPS
4. Loop forever regardless of NSH_BUILTIN_APPS, user could:
a.change the default behavior by the command line argument
b.or ctrl+c to break out the loop
2019-10-07 02:37:56 -06:00
Xiang Xiao
e806097c70
Application.mk and main.c files: Change builtin's entry point from main to xxx_main by macro expansion. This change make the entry point fully compliant with POSIX/ANSI standard.
2019-10-06 06:14:56 -06:00
Xiang Xiao
cf0365ea92
Clean up Makefile under apps folder no functional changes.
2019-10-04 08:35:46 -06:00
Xiang Xiao
63c3772888
CONFIG_BUILD_LOADABLE: Check the kernel function callable by BUILD_KERNEL instead of BUILD_LOADABLE since BUILD_LOADABLE could be turned on even with BUILD_FLAT.
2019-10-03 14:10:32 -06:00
Nathan Hartman
3a75edca20
Fix minor typo/copy-paste: 'will be use when'->'will be used when'
2019-08-23 11:59:28 -06:00
anchao
b5cfd93444
apps/: Modification to build system: Unified application compilation rules
2018-09-03 09:29:56 -06:00
EunBong Song
1ee6fbf296
Merged in ebsong/fork-apps (pull request #152 )
...
Master
* nettest: fix typo!
NET_LOOPBACK -> CONFIG_NET_LOOPBACK
Signed-off-by: EunBong Song <eunb.song@samsung.com>
* nettest: fix compilation error.
Should enable NET_SETSOCKOPT for preventing compilation error.
Signed-off-by: EunBong Song <eunb.song@samsung.com>
Approved-by: GregoryN <gnutt@nuttx.org>
2018-08-28 13:46:49 +00:00
anchao
220653f21c
Squashed commit of the following:
...
Author: anchao <anchao@pinecone.net>
apps/, most main() function: Correct CONFIG_BUILD_LOADABLE usage
Loadable apps/: Correct loadable symbol table generate
apps/system/ubloxmodem: Fix build break
apps/examples/ostest: start restart/waitpid/user test from main loop
apps/nshlib: Expand reboot and poweroff commands to include a second, optional mode argument
Author: Gregory Nutt <gnutt@nuttx.org>
An attempt to fix build issues. Does not work.
apps/examples/ostest: Fix some inappropriate renaming of static functions introduced with recent patches.
apps/builtin/exec_builtin.c: Fix a error introduced by recent comments. Found in build testing.
Author: anchao <anchao@pinecone.net>
apps/builtin/exec_builtin.c: Try posix_spawn if builtin apps do not have have an entry point.
apps/Application.mk: introduce MODULE config to simplify tristate(m)
apps/nsh: Change the nuttx shell module type to tristate
apps: Add loadable application support
script/mksymtab: Generate symbol table name by default
apps/builtin: Allow loadable applications can register with apps/builtin.
2018-08-23 11:06:15 -06:00
Gregory Nutt
2f982e9c77
Revert "Squashed commit of the following:"
...
This reverts commit 25b92edd9f
.
2018-08-22 12:06:32 -06:00
anchao
25b92edd9f
Squashed commit of the following:
...
apps/builtin/exec_builtin.c: Try posix_spawn if builtin apps do not have have an entry point.
apps/Application.mk: introduce MODULE config to simplify tristate(m)
apps/nsh: Change the nuttx shell module type to tristate
apps: Add loadable application support
script/mksymtab: Generate symbol table name by default
apps/builtin: Allow loadable applications can register with apps/builtin.
2018-08-22 09:30:38 -06:00
Gregory Nutt
7a8561728c
The last change added .PRECIOUS: $(BIN) to everyway Makefile in hopes the libapps.a will not be deleted on Control-C (unproven so far). However, $(BIN) may contain back slashes in some build platforms and that causes problems for make: It can't handle the backslashes in the .PRECIOUS dependency list. $(BIN) replaced with ../../libapp.a, where the number of ../ depends on the depth of the Makefile in the apps/ source tree.
2017-08-13 11:03:17 -06:00
Gregory Nutt
a66da34f18
All Makefiles: Add .PRECIOUS: apps/libapps.a to every Makefile. Hopefully this will end awkward problems when you Control-C out of a build and libapps.a is deleted.
2017-08-13 09:35:14 -06:00
Gregory Nutt
c7e7b42b06
examples/nettest/: Loopback option shoudl be available in Kconfig for PktRadio.
2017-08-01 17:22:01 -06:00
Gregory Nutt
3e37dbc4ab
apps/examples/nettest: Fix incorrectly named file.
2017-07-05 12:52:46 -06:00
Gregory Nutt
ace5bdc7c0
examples/nettest: Add more printf output
2017-06-26 10:54:32 -06:00
Gregory Nutt
6b25b0d65e
examples/nettest: Fix some printf output
2017-06-25 13:01:21 -06:00
Gregory Nutt
664ab42da7
examples/udp and examples/nettest: Fix some naming collisions; examples/nettest: Fix some build issues with two targets.
2017-06-25 09:15:27 -06:00
Gregory Nutt
b868fbe879
examples/nettest: The send buffer size is now a configuration option.
2017-06-24 09:49:44 -06:00
Gregory Nutt
3c97bfeae6
examples/nettest: Fixes for building with loopback device again after the last changes.
2017-06-23 19:14:39 -06:00
Gregory Nutt
a3ac695f17
examples/nettest: Add support for both enpoints on target boards vs. one on a target and one on the host PC.
2017-06-23 18:12:34 -06:00
Gregory Nutt
1c0f237c06
examples/nettest: More prep for a second target
2017-06-23 15:49:27 -06:00
Gregory Nutt
cde3cb1544
Forgot to add files before last commit.
2017-06-23 12:30:11 -06:00
Gregory Nutt
a0251ae974
examples/nettest: Fix client/server naming confusion; add command line option to select the server address on the target; examples/udp: Fix naming of a configuration setting
2017-06-23 12:21:13 -06:00
Gregory Nutt
c88cf75064
examples/nettest: Separate out network initialization so that it may, eventually, be used by both a target server and a target client.
2017-06-23 11:40:02 -06:00
Gregory Nutt
41457d6fe8
examples/nettest: Renaming some files to prevent name collision in libapps.a and to prepare to support target boards on both ends of the test
2017-06-23 11:23:43 -06:00
Sebastien Lorquet
297844b1ce
Fix comments formatting
2017-05-19 17:50:26 +02:00
Sebastien Lorquet
60ca4a1ef4
Ensure netlib will not be broken when setip will not bring the network up anymore
2017-05-19 17:13:27 +02:00
Gregory Nutt
e8f3d7f46b
apps/examples/nettest: Fix an error in pre-processor expression.
2017-05-13 17:51:37 -06:00
Gregory Nutt
14fc6d7575
examples/udpblaster: Several fixes to work with 6loWPAN.
2017-04-06 09:37:52 -06:00
Gregory Nutt
74ae283487
examples/nettest: If doing loopback, but not using the official loopback device, then use the server should use the configured client IP address
2017-04-04 15:13:11 -06:00
Gregory Nutt
eef0161dd4
examples/nettest: Trying to adapt to use for testing 6loWPAN.
2017-04-03 15:33:39 -06:00
Sebastien Lorquet
2cbad44f1d
This is the Pokemon patch to change all includes fronm <apps/bla/bla.h> to "bla/bla.h"
2016-07-11 10:11:18 -06:00
Sebastien Lorquet
bfff5e7179
Add empty preconfig rules to 'leaf' makefiles
2016-06-02 16:24:30 +02:00
Gregory Nutt
aacfce081e
Fix several cosmetic, C coding style issues
2015-10-03 11:03:42 -06:00
Gregory Nutt
e9447c6058
Standardize nameing of the pre-processor definitiongs group header
2015-10-02 14:06:11 -06:00
Gregory Nutt
ed2ccad735
examples/nettest: Fix a couple of crazy long delays that may make you think something is broken. In main, add a wait for the server to exit
2015-08-27 11:46:42 -06:00
Gregory Nutt
a7853cdc89
apps/examples/nettest: Extend the test so that it can be down using the local loopback device
2015-08-26 10:35:40 -06:00
Gregory Nutt
6cedfcd632
apps/examples/nettest: Add option to suppress networking initialization
2015-08-26 09:06:41 -06:00
Gregory Nutt
d5b6949c9f
Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation
2015-06-28 08:14:53 -06:00
Gregory Nutt
3e16e0a0f9
apps/examples: Modify/simpify apps/examples build files. From Roman Saveljev.
2015-05-06 08:19:54 -06:00
Gregory Nutt
dc527f5c9d
Fix errors in range of IPv6 netmask range in Kconfig files
2015-02-05 10:47:42 -06:00
Gregory Nutt
1b9d7c1522
ICMPv6: Some initial bugfix from first tests of the ICMPv6 auto-configuration logic. so far so good but a lot more testing is needed
2015-02-03 16:19:08 -06:00
Gregory Nutt
6273eb0160
ICMPv6: This completes coding of the ICMPv6 auto-configuration feature. It is not yet functional
2015-02-03 15:40:56 -06:00
Gregory Nutt
5499189417
Add netlib and application hooks for ICMPv6 auto-configuration (still incomplete
2015-02-03 08:01:55 -06:00
Gregory Nutt
d91ae1cd0e
Add to .depend dependencies to eliminate an error at dependency generation time
2015-01-23 08:03:53 -06:00
Gregory Nutt
a49685c155
apps/examples/udp: The UDP test example has been extend to support IPv6 domain sockets
2015-01-22 15:30:23 -06:00
Gregory Nutt
2949e13237
Merge remote-tracking branch 'origin/master' into ipv6
2015-01-21 08:05:41 -06:00
Gregory Nutt
9a7cac88b9
apps/examples/nettest: Fix address initializaiton, HTONS not HTNOL
2015-01-21 08:04:22 -06:00
Gregory Nutt
36703532e5
Should fix some errors reported by Travis
2015-01-20 20:54:51 -06:00