1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/* vi: set ts=4 :*/
/* Toybox infrastructure.
*
* Copyright 2006 Rob Landley <rob@landley.net>
*/
// When #included from main.c, provide the guts for toy_list[]
#ifdef FROM_MAIN
#undef NEWTOY
#undef OLDTOY
#define NEWTOY(name, flags) {#name, name##_main, flags},
#define OLDTOY(name, oldname, flags) {#name, oldname##_main, flags},
// When #included from toys.h, provide function declarations and structs.
// The #else is because main.c #includes this file twice.
#else
#define NEWTOY(name, flags) int name##_main(void);
#define OLDTOY(name, oldname, flags)
struct df_data {
struct string_list *fstype;
long units;
};
union toy_union {
struct df_data df;
} toy;
#define TOYFLAG_USR (1<<0)
#define TOYFLAG_BIN (1<<1)
#define TOYFLAG_SBIN (1<<2)
#define TOYMASK_LOCATION ((1<<4)-1)
#define TOYFLAG_NOFORK (1<<4)
extern struct toy_list {
char *name;
int (*toy_main)(void);
int flags;
} toy_list[];
#endif
// List of all the applets toybox can provide.
// This one is out of order on purpose.
NEWTOY(toybox, 0)
// The rest of these are alphabetical, for binary search.
USE_TOYSH(NEWTOY(cd, TOYFLAG_NOFORK))
USE_DF(NEWTOY(df, TOYFLAG_USR|TOYFLAG_SBIN))
USE_TOYSH(NEWTOY(exit, TOYFLAG_NOFORK))
USE_HELLO(NEWTOY(hello, TOYFLAG_NOFORK|TOYFLAG_USR))
USE_PWD(NEWTOY(pwd, TOYFLAG_BIN))
USE_TOYSH(OLDTOY(sh, toysh, TOYFLAG_BIN))
USE_TOYSH(NEWTOY(toysh, TOYFLAG_BIN))
USE_WHICH(NEWTOY(which, TOYFLAG_USR|TOYFLAG_BIN))
|