drop Android-specific lsmod builtin (for now), they don’t use it anyway
This commit is contained in:
parent
3e0abff926
commit
aeaf3e27ef
20
funcs.c
20
funcs.c
@ -38,7 +38,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/funcs.c,v 1.207 2012/01/29 01:41:13 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/funcs.c,v 1.208 2012/03/03 19:28:45 tg Exp $");
|
||||||
|
|
||||||
#if HAVE_KILLPG
|
#if HAVE_KILLPG
|
||||||
/*
|
/*
|
||||||
@ -60,10 +60,6 @@ __RCSID("$MirOS: src/bin/mksh/funcs.c,v 1.207 2012/01/29 01:41:13 tg Exp $");
|
|||||||
#define c_ulimit c_true
|
#define c_ulimit c_true
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(ANDROID)
|
|
||||||
static int c_android_lsmod(const char **);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
c_true(const char **wp MKSH_A_UNUSED)
|
c_true(const char **wp MKSH_A_UNUSED)
|
||||||
{
|
{
|
||||||
@ -145,9 +141,6 @@ const struct builtin mkshbuiltins[] = {
|
|||||||
#ifdef __MirBSD__
|
#ifdef __MirBSD__
|
||||||
/* alias to "true" for historical reasons */
|
/* alias to "true" for historical reasons */
|
||||||
{"domainname", c_true},
|
{"domainname", c_true},
|
||||||
#endif
|
|
||||||
#if defined(ANDROID)
|
|
||||||
{"lsmod", c_android_lsmod},
|
|
||||||
#endif
|
#endif
|
||||||
{NULL, (int (*)(const char **))NULL}
|
{NULL, (int (*)(const char **))NULL}
|
||||||
};
|
};
|
||||||
@ -3687,14 +3680,3 @@ c_sleep(const char **wp)
|
|||||||
return (rv);
|
return (rv);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(ANDROID)
|
|
||||||
static int
|
|
||||||
c_android_lsmod(const char **wp MKSH_A_UNUSED)
|
|
||||||
{
|
|
||||||
const char *cwp[3] = { "cat", "/proc/modules", NULL };
|
|
||||||
|
|
||||||
builtin_argv0 = cwp[0];
|
|
||||||
return (c_cat(cwp));
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user