OSDN Git Service

Cosmetic tweak: newline at the end of "make change".
[android-x86/external-toybox.git] / scripts / genconfig.sh
1 #!/bin/bash
2
3 # This has to be a separate file from scripts/make.sh so it can be called
4 # before menuconfig.  (It's called again from scripts/make.sh just to be sure.)
5
6 mkdir -p generated
7
8 source configure
9
10 probecc()
11 {
12   ${CROSS_COMPILE}${CC} $CFLAGS -xc -o /dev/null $1 -
13 }
14
15 # Probe for a single config symbol with a "compiles or not" test.
16 # Symbol name is first argument, flags second, feed C file to stdin
17 probesymbol()
18 {
19   probecc $2 2>/dev/null && DEFAULT=y || DEFAULT=n
20   rm a.out 2>/dev/null
21   echo -e "config $1\n\tbool" || exit 1
22   echo -e "\tdefault $DEFAULT\n" || exit 1
23 }
24
25 probeconfig()
26 {
27   > generated/cflags
28   # llvm produces its own really stupid warnings about things that aren't wrong,
29   # and although you can turn the warning off, gcc reacts badly to command line
30   # arguments it doesn't understand. So probe.
31   [ -z "$(probecc -Wno-string-plus-int <<< \#warn warn 2>&1 | grep string-plus-int)" ] &&
32     echo -Wno-string-plus-int >> generated/cflags
33
34   # Probe for container support on target
35   probesymbol TOYBOX_CONTAINER << EOF
36     #include <linux/sched.h>
37     int x=CLONE_NEWNS|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET;
38
39     int main(int argc, char *argv[]) { return unshare(x); }
40 EOF
41
42   probesymbol TOYBOX_FIFREEZE -c << EOF
43     #include <linux/fs.h>
44     #ifndef FIFREEZE
45     #error nope
46     #endif
47 EOF
48
49   # Work around some uClibc limitations
50   probesymbol TOYBOX_ICONV -c << EOF
51     #include "iconv.h"
52 EOF
53   probesymbol TOYBOX_FALLOCATE << EOF
54     #include <fcntl.h>
55
56     int main(int argc, char *argv[]) { return posix_fallocate(0,0,0); }
57 EOF
58   
59   # Android and some other platforms miss utmpx
60   probesymbol TOYBOX_UTMPX -c << EOF
61     #include <utmpx.h>
62     #ifndef BOOT_TIME
63     #error nope
64     #endif
65     int main(int argc, char *argv[]) {
66       struct utmpx *a; 
67       if (0 != (a = getutxent())) return 0;
68       return 1;
69     }
70 EOF
71
72   # Android is missing shadow.h
73   probesymbol TOYBOX_SHADOW -c << EOF
74     #include <shadow.h>
75     int main(int argc, char *argv[]) {
76       struct spwd *a = getspnam("root"); return 0;
77     }
78 EOF
79
80   # Some commands are android-specific
81   probesymbol TOYBOX_ON_ANDROID -c << EOF
82     #ifndef __ANDROID__
83     #error nope
84     #endif
85 EOF
86
87   # nommu support
88   probesymbol TOYBOX_FORK << EOF
89     #include <unistd.h>
90     int main(int argc, char *argv[]) { return fork(); }
91 EOF
92 }
93
94 genconfig()
95 {
96   # Reverse sort puts posix first, examples last.
97   for j in $(ls toys/*/README | sort -r)
98   do
99     DIR="$(dirname "$j")"
100
101     [ $(ls "$DIR" | wc -l) -lt 2 ] && continue
102
103     echo "menu \"$(head -n 1 $j)\""
104     echo
105
106     # extract config stanzas from each source file, in alphabetical order
107     for i in $(ls -1 $DIR/*.c)
108     do
109       # Grab the config block for Config.in
110       echo "# $i"
111       sed -n '/^\*\//q;/^config [A-Z]/,$p' $i || return 1
112       echo
113     done
114
115     echo endmenu
116   done
117 }
118
119 probeconfig > generated/Config.probed || rm generated/Config.probed
120 genconfig > generated/Config.in || rm generated/Config.in