|
diff --git a/config.in b/config.in index 4db0204..20fcf56 100644 --- a/ config.in+++ b/ config.in |
|
@@ -7,16 +7,19 @@ choice |
7 | default TARGET_X86 |
7 | default TARGET_X86 |
8 | help |
8 | help |
9 | Please select the architecture of the machine you will be |
9 | Please select the architecture of the machine you will be |
10 | building the OpenZaurus buildroot for. |
10 | building the OpenZaurus buildroot for. |
11 | |
11 | |
12 | config TARGET_X86 |
12 | config TARGET_X86 |
13 | boolean "Intel X86" |
13 | boolean "Intel X86" |
14 | |
14 | |
| |
15 | config TARGET_MACOSX |
| |
16 | boolean "Mac OS X (DARWIN)" |
| |
17 | |
15 | config TARGET_SHARP |
18 | config TARGET_SHARP |
16 | boolean "Sharp Zaurus" |
19 | boolean "Sharp Zaurus" |
17 | |
20 | |
18 | config TARGET_IPAQ |
21 | config TARGET_IPAQ |
19 | boolean "iPAQ" |
22 | boolean "iPAQ" |
20 | |
23 | |
21 | config TARGET_RAMSES |
24 | config TARGET_RAMSES |
22 | boolean "Ramses" |
25 | boolean "Ramses" |
@@ -57,16 +60,17 @@ config SPECFILE |
57 | default "linux-g++" if TARGET_SHARP && X11 |
60 | default "linux-g++" if TARGET_SHARP && X11 |
58 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
61 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
59 | default "linux-g++" if TARGET_IPAQ && X11 |
62 | default "linux-g++" if TARGET_IPAQ && X11 |
60 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
63 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
61 | default "linux-g++" if TARGET_RAMSES && X11 |
64 | default "linux-g++" if TARGET_RAMSES && X11 |
62 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
65 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
63 | default "linux-g++" if TARGET_SIMPAD && X11 |
66 | default "linux-g++" if TARGET_SIMPAD && X11 |
64 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
67 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
| |
68 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
65 | |
69 | |
66 | config CUSTOMFILE |
70 | config CUSTOMFILE |
67 | string |
71 | string |
68 | default "custom-ipaq.h" if TARGET_IPAQ |
72 | default "custom-ipaq.h" if TARGET_IPAQ |
69 | default "custom-sharp.h" if TARGET_SHARP |
73 | default "custom-sharp.h" if TARGET_SHARP |
70 | default "custom-ramses.h" if TARGET_RAMSES |
74 | default "custom-ramses.h" if TARGET_RAMSES |
71 | default "custom-ipaq.h" if TARGET_SIMPAD |
75 | default "custom-ipaq.h" if TARGET_SIMPAD |
72 | default "custom-yopy.h" if TARGET_YOPY |
76 | default "custom-yopy.h" if TARGET_YOPY |
|