Searched refs:shell (Results 1 - 25 of 166) sorted by relevance

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Drestricted_shell.c33 /* Return 1 if SHELL is a restricted shell (one not returned by
34 getusershell), else 0, meaning it is a standard shell. */
35 int restricted_shell(const char *shell) argument
41 if (*line != '#' && strcmp(line, shell) == 0)
H A Drun_shell.c57 If COMMAND is nonzero, pass it to the shell with the -c option.
58 If ADDITIONAL_ARGS is nonzero, pass it to the shell as more
61 void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) argument
72 args[0] = bb_get_last_path_component(xstrdup(shell));
89 execve(shell, (char **) args, environ);
92 execv(shell, (char **) args);
93 bb_perror_msg_and_die("cannot run %s", shell);
H A Dsetup_environment.c33 void setup_environment(const char *shell, int loginshell, int changeenv, const struct passwd *pw) argument
56 xsetenv("SHELL", shell);
65 xsetenv("SHELL", shell);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/man/
H A Denvsubst.x2 envsubst \- substitutes environment variables in shell format strings
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/
H A DMakefile26 CCSPECS := $(shell $(CC) -v 2>&1 | grep "^Reading specs from " | head -1 | cut -c20-)
31 COMPILE_ARCH = $(shell uname -m)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/loginutils/
H A Dsulogin.c45 const char *shell; local
114 shell = getenv("SUSHELL");
115 if (!shell) shell = getenv("sushell");
116 if (!shell) {
117 shell = "/bin/sh";
119 shell = pwd->pw_shell;
121 run_shell(shell, 1, 0, 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/djgpp/
H A Dgetpwnam.c18 static char shell [] = "sh"; variable
36 rv.pw_shell = shell;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/endpoint/
H A DMakefile26 USE_PREBUILD=$(shell if [ -f $(SRCBASE)/voip/xChange/prebuilt/endpointdd_linux.o ]; then echo 1; else echo 0; fi)
27 HAS_ENDPTSRC=$(shell if [ -d $(ENDPTDRV_SRC) ]; then echo 1; else echo 0; fi)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/lxdialog/
H A DMakefile8 HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags)
9 HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/m4m/
H A DMakefile.am1 EXTRA_DIST = gp-byteorder.m4 gp-check-library.m4 gp-check-popt.m4 gp-check-shell-environment.m4 gp-config-msg.m4 gp-documentation.m4 gp-gettext-hack.m4 gp-packaging.m4 gp-pkg-config.m4 gp-references.m4 stdint.m4
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_vms.c46 /* VMS has a DCL shell and and also has Unix shells ported to it.
47 * When curl is running under a Unix shell, we want it to be as much
52 char *shell; local
54 /* Have we checked the shell yet? */
58 shell = getenv("SHELL");
60 /* No shell, means DCL */
61 if(shell == NULL) {
66 /* Have to make sure some one did not set shell to DCL */
67 if(strcmp(shell, "DCL") == 0) {
77 * VMS has two exit() routines. When running under a Unix style shell, the
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A DMakefile16 HTMLFILES=$(subst .sgml,.html,$(shell echo *.sgml))
51 install -m 0644 $(shell echo *.tex) $(DESTDIR)$(DOCDIR)
52 install -m 0644 $(shell echo *.sgml) $(DESTDIR)$(DOCDIR)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/
H A DMakefile15 KERNEL_DIR="/lib/modules/$(shell uname -r)/build"
29 ifeq ($(shell [ -f /usr/include/netinet/ip6.h ] && echo YES), YES)
62 ifeq ($(shell uname -m),sparc64)
64 32bituser := $(shell echo -e "\#include <stdio.h>\n\#if !defined(__sparcv9) && !defined(__arch64__) && !defined(_LP64)\nuserspace_is_32bit\n\#endif" | $(CC) $(CFLAGS) -E - | grep userspace_is_32bit)
74 ifeq ($(shell uname -m), alpha)
81 ifeq ($(shell [ -d $(KERNEL_DIR)/include/asm ] && echo YES), YES)
82 64bitkernel := $(shell echo -e "\#include <asm/types.h>\n\#if BITS_PER_LONG == 64\nkernel_is_64bits\n\#endif" | $(CC) $(CFLAGS) -D__KERNEL__ -E - | grep kernel_is_64bits)
84 32bituser := $(shell echo -e "\#include <stdio.h>\n\#if !defined(__arch64__) && !defined(_LP64)\nuserspace_is_32bit\n\#endif" | $(CC) $(CFLAGS) -E - | grep userspace_is_32bit)
276 include $(shell echo */Makefile)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/lasat/image/
H A DMakefile16 KERNEL_START = $(shell $(NM) $(KERNEL_IMAGE) | grep " _text" | cut -f1 -d\ )
17 KERNEL_ENTRY = $(shell $(NM) $(KERNEL_IMAGE) | grep kernel_entry | cut -f1 -d\ )
24 -D TIMESTAMP=$(shell date +%s)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/eisa/
H A DMakefile12 DEVICE_NAME_SIZE =$(shell awk '$$1=="\#define" && $$2=="DEVICE_NAME_SIZE" {print $$3-1}' $(srctree)/include/linux/device.h)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boot/compressed/
H A DMakefile19 IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_PAGE_OFFSET) + \
23 LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/sqlite-3.6.22/
H A DMakefile.am9 sqlite3_SOURCES = shell.c sqlite3.h
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A DMakefile.modinst12 __modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/
H A DMakefile15 CC := $(shell if $(CC) -m64 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo $(CC); else echo sparc64-linux-gcc; fi )
18 NEW_GAS := $(shell if $(LD) -V 2>&1 | grep 'elf64_sparc' > /dev/null; then echo y; else echo n; fi)
19 UNDECLARED_REGS := $(shell if $(CC) -c -x assembler /dev/null -Wa,--help | grep undeclared-regs > /dev/null; then echo y; else echo n; fi; )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/
H A DMakefile23 CROSS_COMPILE := $(shell if [ -x /usr/bin/hppa64-linux-gnu-gcc ]; then \
28 MACHINE := $(subst 64,,$(shell uname -m))
76 PALO := $(shell if which palo; then : ; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-objc-gnustep/
H A DGNUmakefile21 Hello_LANGUAGES := $(sort English $(shell MAKEFLAGS= $(MAKE) -s -C po echo-languages))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/boot/
H A DMakefile14 BIG_ENDIAN := $(shell echo -e __XTENSA_EB__ | $(CC) -E - | grep -v "\#")
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/boot/ramdisk/
H A DMakefile5 BIG_ENDIAN := $(shell echo -e "\#ifdef __XTENSA_EL__\nint little;\n\#else\nint big;\n\#endif" | $(CC) -E -|grep -c big)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wl/
H A DMakefile53 wl_suffix := $(shell echo "$(WL_SUFFIX)" | tr A-Z a-z)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/script/
H A Duninstallmodules.sh33 binaries, modules, man pages and shell scripts.

Completed in 140 milliseconds

1234567