Added httpd and wget commands
This commit is contained in:
parent
ca0752d988
commit
6b34b4f092
|
@ -3,10 +3,18 @@ shell_src = shell.c shell-reboot.c \
|
|||
shell-blink.c shell-text.c shell-time.c \
|
||||
shell-file.c shell-netfile.c shell-run.c \
|
||||
shell-rime-ping.c shell-rime-sniff.c shell-rime-netcmd.c \
|
||||
shell-rime-debug.c shell-coffee.c
|
||||
shell-rime-debug.c shell-coffee.c \
|
||||
shell-wget.c shell-httpd.c
|
||||
#shell-rsh.c
|
||||
shell_dsc = shell-dsc.c
|
||||
|
||||
APPS+=webbrowser webserver
|
||||
include $(CONTIKI)/apps/webbrowser/Makefile.webbrowser
|
||||
include $(CONTIKI)/apps/webserver/Makefile.webserver
|
||||
|
||||
override webserver_src = webserver-nogui.c http-strings.c psock.c memb.c \
|
||||
httpd-cfs.c
|
||||
|
||||
ifeq ($(TARGET),sky)
|
||||
shell_src += shell-sky.c shell-exec.c
|
||||
endif
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: shell.h,v 1.9 2008/07/10 16:56:27 adamdunkels Exp $
|
||||
* $Id: shell.h,v 1.10 2008/11/09 12:38:02 adamdunkels Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -103,6 +103,7 @@ struct shell_input {
|
|||
#include "shell-coffee.h"
|
||||
#include "shell-exec.h"
|
||||
#include "shell-file.h"
|
||||
#include "shell-httpd.h"
|
||||
#include "shell-netfile.h"
|
||||
#include "shell-ps.h"
|
||||
#include "shell-reboot.h"
|
||||
|
@ -118,5 +119,6 @@ struct shell_input {
|
|||
#include "shell-text.h"
|
||||
#include "shell-time.h"
|
||||
#include "shell-vars.h"
|
||||
#include "shell-wget.h"
|
||||
|
||||
#endif /* __SHELL_H__ */
|
||||
|
|
Loading…
Reference in a new issue