author | kergoth <kergoth> | 2003-01-16 05:12:28 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 05:12:28 (UTC) |
commit | ec2be2b453c0cb5df6b1eabbcdc1e899562bf5c2 (patch) (unidiff) | |
tree | ca49caadf5e3629ec0be98a38ee1f47661977578 /config.in | |
parent | cc976ca7f032c892d3dadcaadf2225c8869a6612 (diff) | |
download | opie-ec2be2b453c0cb5df6b1eabbcdc1e899562bf5c2.zip opie-ec2be2b453c0cb5df6b1eabbcdc1e899562bf5c2.tar.gz opie-ec2be2b453c0cb5df6b1eabbcdc1e899562bf5c2.tar.bz2 |
Move most of config categorization into root config, and consolated core vs noncore from a config perspective, as its confusing and unnecessary for users. Also cleaned up a bit, and added some basic descriptions.
-rw-r--r-- | config.in | 60 |
1 files changed, 53 insertions, 7 deletions
@@ -1,89 +1,135 @@ | |||
1 | mainmenu "Opie Configuration" | 1 | mainmenu "Opie Configuration" |
2 | menu "Build Parameters" | 2 | menu "Build Parameters" |
3 | 3 | ||
4 | #choice | 4 | #choice |
5 | # prompt "Build Processor family" | 5 | # prompt "Build Processor family" |
6 | # default BUILD_X86 | 6 | # default BUILD_X86 |
7 | # help | 7 | # help |
8 | # Please select the architecture of the machine you will be | 8 | # Please select the architecture of the machine you will be |
9 | # building the OpenZaurus buildroot on. | 9 | # building the OpenZaurus buildroot on. |
10 | # | 10 | # |
11 | # config BUILD_X86 | 11 | # config BUILD_X86 |
12 | # boolean "X86 Architecture" | 12 | # boolean "X86 Architecture" |
13 | # | 13 | # |
14 | #endchoice | 14 | #endchoice |
15 | 15 | ||
16 | choice | 16 | choice |
17 | prompt "Target Machine" | 17 | prompt "Target Machine" |
18 | default TARGET_X86 | 18 | default TARGET_X86 |
19 | help | 19 | help |
20 | Please select the architecture of the machine you will be | 20 | Please select the architecture of the machine you will be |
21 | building the OpenZaurus buildroot for. | 21 | building the OpenZaurus buildroot for. |
22 | 22 | ||
23 | config TARGET_X86 | 23 | config TARGET_X86 |
24 | boolean "Intel X86" | 24 | boolean "Intel X86" |
25 | 25 | ||
26 | config TARGET_SHARP | 26 | config TARGET_SHARP |
27 | boolean "Sharp Zaurus SL-5x00 - stock" | 27 | boolean "Sharp Zaurus SL-5x00 - stock" |
28 | 28 | ||
29 | # config TARGET_OZ | 29 | # config TARGET_OZ |
30 | # boolean "Sharp Zaurus SL-5x00 - OpenZaurus" | 30 | # boolean "Sharp Zaurus SL-5x00 - OpenZaurus" |
31 | 31 | ||
32 | config TARGET_IPAQ | 32 | config TARGET_IPAQ |
33 | boolean "Ipaq" | 33 | boolean "Ipaq" |
34 | 34 | ||
35 | endchoice | 35 | endchoice |
36 | 36 | ||
37 | config OPTIMIZE | 37 | config OPTIMIZE |
38 | boolean "Use optimizations" | 38 | boolean "Use optimizations" |
39 | default "y" if ! TARGET_X86 | 39 | default "y" if ! TARGET_X86 |
40 | 40 | ||
41 | config SPECFILE | 41 | config SPECFILE |
42 | string | 42 | string |
43 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 43 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
44 | default "linux-g++" if TARGET_X86 && X11 | 44 | default "linux-g++" if TARGET_X86 && X11 |
45 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 45 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
46 | default "linux-g++" if TARGET_SHARP && X11 | 46 | default "linux-g++" if TARGET_SHARP && X11 |
47 | # default "linux-oz-g++" if TARGET_OZ | 47 | # default "linux-oz-g++" if TARGET_OZ |
48 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 48 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
49 | default "linux-g++" if TARGET_IPAQ && X11 | 49 | default "linux-g++" if TARGET_IPAQ && X11 |
50 | 50 | ||
51 | config CUSTOMFILE | 51 | config CUSTOMFILE |
52 | string | 52 | string |
53 | default "custom-ipaq.h" if TARGET_IPAQ | 53 | default "custom-ipaq.h" if TARGET_IPAQ |
54 | default "custom-sharp.h" if TARGET_SHARP | 54 | default "custom-sharp.h" if TARGET_SHARP |
55 | 55 | ||
56 | 56 | ||
57 | config OPTIMIZATIONS | 57 | config OPTIMIZATIONS |
58 | string "Optimization flags" | 58 | string "Optimization flags" |
59 | depends OPTIMIZE | 59 | depends OPTIMIZE |
60 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 60 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
61 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 61 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
62 | 62 | ||
63 | #config CROSS | 63 | #config CROSS |
64 | # string "Crosscompilation prefix" | 64 | # string "Crosscompilation prefix" |
65 | # default "arm-linux-" | 65 | # default "arm-linux-" |
66 | # help | 66 | # help |
67 | # Crosscompilation prefix is the prefix which will be prepended | 67 | # Crosscompilation prefix is the prefix which will be prepended |
68 | # to all compilation commands. For example, a crosscompilation prefix | 68 | # to all compilation commands. For example, a crosscompilation prefix |
69 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. | 69 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. |
70 | 70 | ||
71 | endmenu | 71 | endmenu |
72 | 72 | ||
73 | menu "Libraries" | 73 | menu "Base" |
74 | choice | 74 | choice |
75 | prompt "Qpe Library Selection" | 75 | prompt "Qpe Library Selection" |
76 | default LIBQPE | 76 | default LIBQPE |
77 | 77 | ||
78 | source library/config.in | 78 | source library/config.in |
79 | source x11/config.in | 79 | source x11/config.in |
80 | endchoice | 80 | endchoice |
81 | source libopie/config.in | 81 | source libopie/config.in |
82 | source freetype/config.in | 82 | source core/opie-login/config.in |
83 | source core/opiealarm/config.in | ||
84 | source core/launcher/config.in | ||
83 | endmenu | 85 | endmenu |
84 | 86 | ||
85 | source inputmethods/config.in | 87 | comment "" |
86 | source core/config.in | 88 | |
87 | source noncore/config.in | 89 | menu "Applets" |
88 | source development/config.in | 90 | source core/applets/config.in |
89 | source quickexec/config.in | 91 | source noncore/applets/config.in |
92 | endmenu | ||
93 | menu "Apps" | ||
94 | source core/apps/config.in | ||
95 | source noncore/apps/config.in | ||
96 | endmenu | ||
97 | menu "Communications and Networking" | ||
98 | source noncore/comm/config.in | ||
99 | source noncore/mail/config.in | ||
100 | source noncore/net/config.in | ||
101 | endmenu | ||
102 | menu "Games" | ||
103 | source noncore/games/config.in | ||
104 | endmenu | ||
105 | menu "Graphics and Multimedia" | ||
106 | source freetype/config.in | ||
107 | source noncore/graphics/config.in | ||
108 | source core/multimedia/config.in | ||
109 | source noncore/multimedia/config.in | ||
110 | endmenu | ||
111 | menu "Input methods" | ||
112 | source inputmethods/config.in | ||
113 | endmenu | ||
114 | menu "Pim" | ||
115 | source core/pim/config.in | ||
116 | menu "Today Plugins" | ||
117 | source noncore/todayplugins/config.in | ||
118 | source core/pim/today/plugins/config.in | ||
119 | endmenu | ||
120 | endmenu | ||
121 | menu "Settings" | ||
122 | source core/settings/config.in | ||
123 | source noncore/settings/config.in | ||
124 | endmenu | ||
125 | menu "Theming" | ||
126 | source noncore/decorations/config.in | ||
127 | source noncore/styles/config.in | ||
128 | endmenu | ||
129 | menu "Tools" | ||
130 | source noncore/tools/config.in | ||
131 | source development/config.in | ||
132 | endmenu | ||
133 | menu "Unsupported" | ||
134 | source noncore/unsupported/config.in | ||
135 | endmenu | ||