summaryrefslogtreecommitdiff
path: root/config.in
Unidiff
Diffstat (limited to 'config.in') (more/less context) (show whitespace changes)
-rw-r--r--config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.in b/config.in
index dac9024..ddbc93b 100644
--- a/config.in
+++ b/config.in
@@ -1,92 +1,96 @@
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_SHARP 15 config TARGET_SHARP
16 boolean "Sharp Zaurus" 16 boolean "Sharp Zaurus"
17 17
18 config TARGET_IPAQ 18 config TARGET_IPAQ
19 boolean "iPAQ" 19 boolean "iPAQ"
20 20
21 config TARGET_RAMSES 21 config TARGET_RAMSES
22 boolean "Ramses" 22 boolean "Ramses"
23 23
24 config TARGET_SIMPAD 24 config TARGET_SIMPAD
25 boolean "SIMpad" 25 boolean "SIMpad"
26 26
27endchoice 27endchoice
28 28
29config OPTIMIZE 29config OPTIMIZE
30 boolean "Use optimizations" 30 boolean "Use optimizations"
31 default "y" if ! TARGET_X86 31 default "y" if ! TARGET_X86
32 32
33config DEBUG 33config DEBUG
34 boolean "Enable debug builds" 34 boolean "Enable debug builds"
35 default n 35 default n
36config RELEASE 36config RELEASE
37 bool 37 bool
38 default y 38 default y
39 depends !DEBUG 39 depends !DEBUG
40 40
41config QUICK_LAUNCH 41config QUICK_LAUNCH
42 boolean "Enable Quick Launch" 42 boolean "Enable Quick Launch"
43 default n 43 default n
44 44
45config OPIE_NO_OVERRIDE_QT
46 boolean "Build Opie against an unpatched version of Qt"
47 default n
48
45config SPECFILE 49config SPECFILE
46 string 50 string
47 default "qws/linux-generic-g++" if TARGET_X86 && (! X11) 51 default "qws/linux-generic-g++" if TARGET_X86 && (! X11)
48 default "linux-g++" if TARGET_X86 && X11 52 default "linux-g++" if TARGET_X86 && X11
49 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) 53 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11)
50 default "linux-g++" if TARGET_SHARP && X11 54 default "linux-g++" if TARGET_SHARP && X11
51 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) 55 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11)
52 default "linux-g++" if TARGET_IPAQ && X11 56 default "linux-g++" if TARGET_IPAQ && X11
53 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) 57 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11)
54 default "linux-g++" if TARGET_RAMSES && X11 58 default "linux-g++" if TARGET_RAMSES && X11
55 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) 59 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11)
56 default "linux-g++" if TARGET_SIMPAD && X11 60 default "linux-g++" if TARGET_SIMPAD && X11
57 61
58config CUSTOMFILE 62config CUSTOMFILE
59 string 63 string
60 default "custom-ipaq.h" if TARGET_IPAQ 64 default "custom-ipaq.h" if TARGET_IPAQ
61 default "custom-sharp.h" if TARGET_SHARP 65 default "custom-sharp.h" if TARGET_SHARP
62 default "custom-ramses.h" if TARGET_RAMSES 66 default "custom-ramses.h" if TARGET_RAMSES
63 default "custom-ipaq.h" if TARGET_SIMPAD 67 default "custom-ipaq.h" if TARGET_SIMPAD
64 68
65config OPTIMIZATIONS 69config OPTIMIZATIONS
66 string "Optimization flags" 70 string "Optimization flags"
67 depends OPTIMIZE 71 depends OPTIMIZE
68 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ 72 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ
69 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP 73 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP
70 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES 74 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES
71 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD 75 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD
72 76
73config EXPERIMENTAL 77config EXPERIMENTAL
74 bool "Prompt for development and/or incomplete items" 78 bool "Prompt for development and/or incomplete items"
75 default y 79 default y
76 80
77endmenu 81endmenu
78 82
79menu "Base" 83menu "Base"
80 choice 84 choice
81 prompt "Qpe Library Selection" 85 prompt "Qpe Library Selection"
82 default LIBQPE 86 default LIBQPE
83 source library/config.in 87 source library/config.in
84 source x11/config.in 88 source x11/config.in
85 endchoice 89 endchoice
86 source libopie/config.in 90 source libopie/config.in
87 source core/opie-login/config.in 91 source core/opie-login/config.in
88 source core/opiealarm/config.in 92 source core/opiealarm/config.in
89 source core/launcher/config.in 93 source core/launcher/config.in
90 source core/qws/config.in 94 source core/qws/config.in
91endmenu 95endmenu
92 96