summaryrefslogtreecommitdiff
path: root/config.in.in
authorkergoth <kergoth>2002-11-05 21:03:15 (UTC)
committer kergoth <kergoth>2002-11-05 21:03:15 (UTC)
commitc9d9315e03afba63853a10dec16a6a9dea3a5c4e (patch) (unidiff)
treed5a6502909d7cb037887ad136f8bdef6c82b2a73 /config.in.in
parentf8d2e3ed6d926e267bb5891f7e17ac094907a944 (diff)
downloadopie-c9d9315e03afba63853a10dec16a6a9dea3a5c4e.zip
opie-c9d9315e03afba63853a10dec16a6a9dea3a5c4e.tar.gz
opie-c9d9315e03afba63853a10dec16a6a9dea3a5c4e.tar.bz2
Add initial build options menu, including set of the specfile to be used
Diffstat (limited to 'config.in.in') (more/less context) (ignore whitespace changes)
-rw-r--r--config.in.in52
1 files changed, 52 insertions, 0 deletions
diff --git a/config.in.in b/config.in.in
index faabb33..2de0cbc 100644
--- a/config.in.in
+++ b/config.in.in
@@ -1,2 +1,54 @@
1mainmenu "Opie Configuration" 1mainmenu "Opie Configuration"
2menu "Build Parameters"
3
4#choice
5# prompt "Build Processor family"
6# default BUILD_X86
7# help
8# Please select the architecture of the machine you will be
9# building the OpenZaurus buildroot on.
10#
11# config BUILD_X86
12# boolean "X86 Architecture"
13#
14#endchoice
15
16choice
17 prompt "Target Machine"
18 default TARGET_X86
19 help
20 Please select the architecture of the machine you will be
21 building the OpenZaurus buildroot for.
22
23 config TARGET_X86
24 boolean "Intel X86"
25
26 config TARGET_SHARP
27 boolean "Sharp Zaurus SL-5x00 - stock"
28
29# config TARGET_OZ
30# boolean "Sharp Zaurus SL-5x00 - OpenZaurus"
31
32 config TARGET_IPAQ
33 boolean "Ipaq"
34
35endchoice
36
37config SPECFILE
38 string
39 default "linux-generic-g++" if TARGET_X86
40 default "linux-sharp-g++" if TARGET_SHARP
41# default "linux-oz-g++" if TARGET_OZ
42 default "linux-ipaq-g++" if TARGET_IPAQ
43
44#config CROSS
45# string "Crosscompilation prefix"
46# default "arm-linux-"
47# help
48# Crosscompilation prefix is the prefix which will be prepended
49# to all compilation commands. For example, a crosscompilation prefix
50# of arm-linux-, results in the build calling arm-linux-gcc as its CC.
51
52endmenu
53
2@sources@ 54@sources@