author | mickeyl <mickeyl> | 2004-04-19 19:47:57 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-19 19:47:57 (UTC) |
commit | 3758289f7478e74ce1702021a7affc7e145f0e19 (patch) (unidiff) | |
tree | f1b8b1d497826d743ad2623a8870e2f15345eca9 | |
parent | a57416ce6dc62bfd2b57d87434c04417ad23cbc5 (diff) | |
download | opie-3758289f7478e74ce1702021a7affc7e145f0e19.zip opie-3758289f7478e74ce1702021a7affc7e145f0e19.tar.gz opie-3758289f7478e74ce1702021a7affc7e145f0e19.tar.bz2 |
clean up and add configure option for removing some polling with file notifications
-rw-r--r-- | config.in | 27 |
1 files changed, 18 insertions, 9 deletions
@@ -17,5 +17,8 @@ choice | |||
17 | 17 | ||
18 | config TARGET_SHARP | 18 | config TARGET_SHARP |
19 | boolean "Sharp Zaurus" | 19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" |
20 | |||
21 | config TARGET_C700 | ||
22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" | ||
20 | 23 | ||
21 | config TARGET_IPAQ | 24 | config TARGET_IPAQ |
@@ -52,5 +55,6 @@ config RELEASE | |||
52 | config QUICK_LAUNCH | 55 | config QUICK_LAUNCH |
53 | boolean "Enable Quick Launch" | 56 | boolean "Enable Quick Launch" |
54 | default n | 57 | default n if TARGET_X86 |
58 | default y if ! TARGET_X86 | ||
55 | 59 | ||
56 | config QUICKLAUNCH_PATH | 60 | config QUICKLAUNCH_PATH |
@@ -90,4 +94,5 @@ config OPTIMIZATIONS | |||
90 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES | 94 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
91 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD | 95 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
96 | default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 | ||
92 | 97 | ||
93 | config EXPERIMENTAL | 98 | config EXPERIMENTAL |
@@ -104,20 +109,20 @@ config OPIE_NO_OVERRIDE_QT | |||
104 | config OPIE_NO_BUILTIN_SHUTDOWN | 109 | config OPIE_NO_BUILTIN_SHUTDOWN |
105 | boolean "Disable the built in shutdown application" | 110 | boolean "Disable the built in shutdown application" |
106 | default n | 111 | default y |
107 | 112 | ||
108 | config OPIE_NO_BUILTIN_CALIBRATE | 113 | config OPIE_NO_BUILTIN_CALIBRATE |
109 | boolean "Disable the built in calibrate application" | 114 | boolean "Disable the built in calibrate application" |
110 | default y if TARGET_YOPY | 115 | default y if TARGET_YOPY |
111 | default n | 116 | default n if ! TARGET_YOPY |
112 | 117 | ||
113 | config OPIE_SOUND_FRAGMENT_SHIFT | 118 | config OPIE_SOUND_FRAGMENT_SHIFT |
114 | string "The sound fragment used in Opie Player I" | 119 | string "The sound fragment used in Opie Player I" |
115 | default "14" if TARGET_IPAQ | 120 | default "14" if TARGET_IPAQ |
116 | default "16" if (!TARGET_IPAQ) | 121 | default "16" if ! TARGET_IPAQ |
117 | 122 | ||
118 | config USE_REALTIME_AUDIO_THREAD | 123 | config USE_REALTIME_AUDIO_THREAD |
119 | boolean "Use a realtime thread in Opie Player I" | 124 | boolean "Use a realtime thread in Opie Player I" |
120 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP | 125 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
121 | default n | 126 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
122 | 127 | ||
123 | config QT_QWS_ALLOW_OVERCLOCK | 128 | config QT_QWS_ALLOW_OVERCLOCK |
@@ -129,15 +134,19 @@ config OPIE_HIGH_RES_SMALL_PHY | |||
129 | boolean "Resolution is bigger than physical screen" | 134 | boolean "Resolution is bigger than physical screen" |
130 | default y if TARGET_C700 | 135 | default y if TARGET_C700 |
131 | default n | 136 | default n if ! TARGET_C700 |
137 | |||
138 | config USE_FILE_NOTIFICATION | ||
139 | boolean "Substitute (some) polling interfaces with OFileNotifier" | ||
140 | default y | ||
132 | 141 | ||
133 | config OPIE_NEW_ALLOC | 142 | config OPIE_NEW_ALLOC |
134 | boolean "Use malloc and free for the implementation" | 143 | boolean "Use malloc and free for the implementation" |
135 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP | 144 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
136 | default n | 145 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
137 | 146 | ||
138 | config OPIE_NO_SOUND_PCM_READ_BITS | 147 | config OPIE_NO_SOUND_PCM_READ_BITS |
139 | boolean "There is not a pcm_read_bits io control" | 148 | boolean "There is not a pcm_read_bits io control" |
140 | default y if TARGET_SHARP | 149 | default y if TARGET_SHARP |
141 | default n | 150 | default n if ! TARGET_SHARP |
142 | 151 | ||
143 | config OPIE_WE_VERSION_OVERRIDE | 152 | config OPIE_WE_VERSION_OVERRIDE |