-rw-r--r-- | config.in.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config.in.in b/config.in.in index 41998d4..7af1f17 100644 --- a/config.in.in +++ b/config.in.in | |||
@@ -1,59 +1,62 @@ | |||
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 SPECFILE | 37 | config SPECFILE |
38 | string | 38 | string |
39 | default "linux-generic-g++" if TARGET_X86 | 39 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
40 | default "linux-sharp-g++" if TARGET_SHARP | 40 | default "linux-g++" if TARGET_X86 && X11 |
41 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | ||
42 | default "linux-g++" if TARGET_SHARP && X11 | ||
41 | # default "linux-oz-g++" if TARGET_OZ | 43 | # default "linux-oz-g++" if TARGET_OZ |
42 | default "linux-ipaq-g++" if TARGET_IPAQ | 44 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
45 | default "linux-g++" if TARGET_IPAQ && X11 | ||
43 | 46 | ||
44 | config CUSTOMFILE | 47 | config CUSTOMFILE |
45 | string | 48 | string |
46 | default "custom-ipaq.h" if TARGET_IPAQ | 49 | default "custom-ipaq.h" if TARGET_IPAQ |
47 | default "custom-sharp.h" if TARGET_SHARP | 50 | default "custom-sharp.h" if TARGET_SHARP |
48 | 51 | ||
49 | #config CROSS | 52 | #config CROSS |
50 | # string "Crosscompilation prefix" | 53 | # string "Crosscompilation prefix" |
51 | # default "arm-linux-" | 54 | # default "arm-linux-" |
52 | # help | 55 | # help |
53 | # Crosscompilation prefix is the prefix which will be prepended | 56 | # Crosscompilation prefix is the prefix which will be prepended |
54 | # to all compilation commands. For example, a crosscompilation prefix | 57 | # to all compilation commands. For example, a crosscompilation prefix |
55 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. | 58 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. |
56 | 59 | ||
57 | endmenu | 60 | endmenu |
58 | 61 | ||
59 | @sources@ | 62 | @sources@ |