summaryrefslogtreecommitdiff
path: root/config.in
Unidiff
Diffstat (limited to 'config.in') (more/less context) (ignore whitespace changes)
-rw-r--r--config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.in b/config.in
index 61107e7..e979966 100644
--- a/config.in
+++ b/config.in
@@ -1,133 +1,137 @@
1mainmenu "Opie Configuration" 1mainmenu "Opie Configuration"
2 2
3menu "Build Parameters" 3menu "Build Parameters"
4 4
5choice 5choice
6 prompt "Target Machine" 6 prompt "Target Machine"
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 15 config TARGET_MACOSX
16 boolean "Mac OS X (DARWIN)" 16 boolean "Mac OS X (DARWIN)"
17 17
18 config TARGET_SHARP 18 config TARGET_SHARP
19 boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" 19 boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)"
20 20
21 config TARGET_C700 21 config TARGET_C700
22 boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" 22 boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)"
23 23
24 config TARGET_OE 24 config TARGET_OE
25 boolean "OpenEmbedded w/ OE build dir set below" 25 boolean "OpenEmbedded w/ OE build dir set below"
26 26
27 config TARGET_IPAQ 27 config TARGET_IPAQ
28 boolean "iPAQ" 28 boolean "iPAQ"
29 29
30 config TARGET_RAMSES 30 config TARGET_RAMSES
31 boolean "Ramses" 31 boolean "Ramses"
32 32
33 config TARGET_SIMPAD 33 config TARGET_SIMPAD
34 boolean "SIMpad" 34 boolean "SIMpad"
35 35
36 config TARGET_YOPY 36 config TARGET_YOPY
37 boolean "Yopy 3500/3700" 37 boolean "Yopy 3500/3700"
38
39 config TARGET_64BIT
40 boolean "64 BIT"
41
38endchoice 42endchoice
39 43
40config OE_BUILD_DIR 44config OE_BUILD_DIR
41 depends TARGET_OE 45 depends TARGET_OE
42 string "OE build directory" 46 string "OE build directory"
43 default ">>>set OpenEmbedded build directory here<<<" 47 default ">>>set OpenEmbedded build directory here<<<"
44 48
45config OE_HOST_SYS 49config OE_HOST_SYS
46 depends TARGET_OE 50 depends TARGET_OE
47 string "OE host system" 51 string "OE host system"
48 default "i686-linux" 52 default "i686-linux"
49 53
50config OE_TARGET_SYS 54config OE_TARGET_SYS
51 depends TARGET_OE 55 depends TARGET_OE
52 string "OE target system" 56 string "OE target system"
53 default "arm-linux" 57 default "arm-linux"
54 58
55config OPTIMIZE 59config OPTIMIZE
56 boolean "Use optimizations" 60 boolean "Use optimizations"
57 default "y" if ! TARGET_X86 61 default "y" if ! TARGET_X86
58 62
59config THREADED 63config THREADED
60 boolean "Enable threaded build" 64 boolean "Enable threaded build"
61 default "n" 65 default "n"
62 66
63config STATIC 67config STATIC
64 boolean "Build static libraries" 68 boolean "Build static libraries"
65 default "n" 69 default "n"
66 70
67config DEBUG 71config DEBUG
68 boolean "Enable debug builds" 72 boolean "Enable debug builds"
69 default n 73 default n
70 74
71config RELEASE 75config RELEASE
72 bool 76 bool
73 default y 77 default y
74 depends !DEBUG 78 depends !DEBUG
75 79
76config QUICK_LAUNCH 80config QUICK_LAUNCH
77 boolean "Enable Quick Launch" 81 boolean "Enable Quick Launch"
78 default n if TARGET_X86 82 default n if TARGET_X86
79 default y if ! TARGET_X86 83 default y if ! TARGET_X86
80 84
81config QUICKLAUNCH_PATH 85config QUICKLAUNCH_PATH
82 string "Path to quicklauncher" 86 string "Path to quicklauncher"
83 default "./quicklauncher" if TARGET_X86 87 default "./quicklauncher" if TARGET_X86
84 default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 88 default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86
85 89
86config SPECFILE 90config SPECFILE
87 string 91 string
88 default "qws/linux-generic-g++" if TARGET_X86 && (! X11) 92 default "qws/linux-generic-g++" if TARGET_X86 && (! X11)
89 default "linux-g++" if TARGET_X86 && X11 93 default "linux-g++" if TARGET_X86 && X11
90 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) 94 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11)
91 default "linux-g++" if TARGET_SHARP && X11 95 default "linux-g++" if TARGET_SHARP && X11
92 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) 96 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11)
93 default "linux-g++" if TARGET_IPAQ && X11 97 default "linux-g++" if TARGET_IPAQ && X11
94 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) 98 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11)
95 default "linux-g++" if TARGET_RAMSES && X11 99 default "linux-g++" if TARGET_RAMSES && X11
96 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) 100 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11)
97 default "linux-g++" if TARGET_SIMPAD && X11 101 default "linux-g++" if TARGET_SIMPAD && X11
98 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) 102 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11)
99 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) 103 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11)
100 default "qws/linux-oe-g++" if TARGET_OE && (!X11) 104 default "qws/linux-oe-g++" if TARGET_OE && (!X11)
101 105
102config CUSTOMFILE 106config CUSTOMFILE
103 string 107 string
104 default "custom-ipaq.h" if TARGET_IPAQ 108 default "custom-ipaq.h" if TARGET_IPAQ
105 default "custom-sharp.h" if TARGET_SHARP 109 default "custom-sharp.h" if TARGET_SHARP
106 default "custom-ramses.h" if TARGET_RAMSES 110 default "custom-ramses.h" if TARGET_RAMSES
107 default "custom-ipaq.h" if TARGET_SIMPAD 111 default "custom-ipaq.h" if TARGET_SIMPAD
108 default "custom-yopy.h" if TARGET_YOPY 112 default "custom-yopy.h" if TARGET_YOPY
109 113
110config OPTIMIZATIONS 114config OPTIMIZATIONS
111 string "Optimization flags" 115 string "Optimization flags"
112 depends OPTIMIZE 116 depends OPTIMIZE
113 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ 117 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ
114 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY 118 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY
115 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP 119 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP
116 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES 120 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES
117 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD 121 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD
118 default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 122 default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700
119 123
120config EXPERIMENTAL 124config EXPERIMENTAL
121 bool "Prompt for development and/or incomplete items" 125 bool "Prompt for development and/or incomplete items"
122 default y 126 default y
123 127
124config USE_CCACHE 128config USE_CCACHE
125 bool "Use ccache, if available?" 129 bool "Use ccache, if available?"
126 default y 130 default y
127 131
128endmenu 132endmenu
129 133
130menu "Configuration" 134menu "Configuration"
131config OPIE_NO_BUILTIN_SHUTDOWN 135config OPIE_NO_BUILTIN_SHUTDOWN
132 boolean "Disable the built in shutdown application" 136 boolean "Disable the built in shutdown application"
133 default y 137 default y