author | zecke <zecke> | 2003-11-30 13:12:55 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-11-30 13:12:55 (UTC) |
commit | 6804b865ea84e995e93e22582d0584b84810be38 (patch) (unidiff) | |
tree | e43bdd7d9104bcbbd2173e8836e0bf7180d80060 | |
parent | 667d6cc5ca0abb0f4b8b481ce053f92412babd87 (diff) | |
download | opie-6804b865ea84e995e93e22582d0584b84810be38.zip opie-6804b865ea84e995e93e22582d0584b84810be38.tar.gz opie-6804b865ea84e995e93e22582d0584b84810be38.tar.bz2 |
Obsolete many of the custom-platform.h files. Values can be controled
by make menuconfig now. The default depends match the old
custom-platform files.
Todo remove content from the platform files
-rw-r--r-- | Rules.make | 23 | ||||
-rw-r--r-- | config.in | 50 |
2 files changed, 69 insertions, 4 deletions
@@ -32,7 +32,28 @@ endif | |||
32 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) | 32 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) |
33 | echo CONFIG += no-override >> $@ | 33 | echo CONFIG += no-override >> $@ |
34 | endif | 34 | endif |
35 | 35 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) | |
36 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ | ||
37 | endif | ||
38 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) | ||
39 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ | ||
40 | endif | ||
41 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) | ||
42 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ | ||
43 | endif | ||
44 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) | ||
45 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ | ||
46 | endif | ||
47 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) | ||
48 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ | ||
49 | endif | ||
50 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) | ||
51 | echo DEFINES += OPIE_NEW_ALLOC >> $@ | ||
52 | endif | ||
53 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) | ||
54 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ | ||
55 | endif | ||
56 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ | ||
36 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages | 57 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
37 | @echo Generating dependency information... | 58 | @echo Generating dependency information... |
38 | # add to subdir-y, and add descend rules | 59 | # add to subdir-y, and add descend rules |
@@ -48,9 +48,6 @@ config QUICK_LAUNCH | |||
48 | boolean "Enable Quick Launch" | 48 | boolean "Enable Quick Launch" |
49 | default n | 49 | default n |
50 | 50 | ||
51 | config OPIE_NO_OVERRIDE_QT | ||
52 | boolean "Build Opie against an unpatched version of Qt" | ||
53 | default n | ||
54 | 51 | ||
55 | config SPECFILE | 52 | config SPECFILE |
56 | string | 53 | string |
@@ -90,6 +87,53 @@ config EXPERIMENTAL | |||
90 | 87 | ||
91 | endmenu | 88 | endmenu |
92 | 89 | ||
90 | menu "Opie Compile Configs" | ||
91 | config OPIE_NO_OVERRIDE_QT | ||
92 | boolean "Build Opie against an unpatched version of Qt" | ||
93 | default n | ||
94 | |||
95 | |||
96 | config OPIE_NO_BUILTIN_SHUTDOWN | ||
97 | boolean "Disable the built in shutdown application" | ||
98 | default n | ||
99 | |||
100 | config OPIE_NO_BUILTIN_CALIBRATE | ||
101 | boolean "Disable the built in calibrate application" | ||
102 | default y if TARGET_YOPY | ||
103 | default n | ||
104 | |||
105 | config OPIE_SOUND_FRAGMENT_SHIFT | ||
106 | string "The sound fragment used in Opie Player I" | ||
107 | default "14" if TARGET_IPAQ | ||
108 | default "16" if (!TARGET_IPAQ) | ||
109 | |||
110 | config USE_REALTIME_AUDIO_THREAD | ||
111 | boolean "Use a realtime thread in Opie Player I" | ||
112 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP | ||
113 | default n | ||
114 | |||
115 | config QT_QWS_ALLOW_OVERCLOCK | ||
116 | boolean "Allow the user to overclock the device" | ||
117 | depends TARGET_RAMSES | ||
118 | default n | ||
119 | |||
120 | config OPIE_HIGH_RES_SMALL_PHY | ||
121 | boolean "Resolution is bigger than physical scrren" | ||
122 | default y if TARGET_C700 | ||
123 | default n | ||
124 | |||
125 | config OPIE_NEW_ALLOC | ||
126 | boolean "Use malloc and free for the implementation" | ||
127 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP | ||
128 | default n | ||
129 | |||
130 | config OPIE_NO_SOUND_PCM_READ_BITS | ||
131 | boolean "there is not a pcm_read_bits io control" | ||
132 | default y if TARGET_SHARP | ||
133 | default n | ||
134 | |||
135 | endmenu | ||
136 | |||
93 | menu "Base" | 137 | menu "Base" |
94 | choice | 138 | choice |
95 | prompt "Qpe Library Selection" | 139 | prompt "Qpe Library Selection" |