|
diff --git a/Vars.make b/Vars.make index 6a52a93..880ccf1 100644 --- a/ Vars.make+++ b/ Vars.make |
|
@@ -23,16 +23,19 @@ else |
23 | $(shell mkdir -p $(QTDIR)/src/moc) |
23 | $(shell mkdir -p $(QTDIR)/src/moc) |
24 | $(shell echo -e "all: \n\t" >>$(QTDIR)/src/moc/Makefile) |
24 | $(shell echo -e "all: \n\t" >>$(QTDIR)/src/moc/Makefile) |
25 | PLATFORM=sharp-linux |
25 | PLATFORM=sharp-linux |
26 | endif |
26 | endif |
27 | |
27 | |
28 | ifdef CONFIG_TARGET_X86 |
28 | ifdef CONFIG_TARGET_X86 |
29 | PLATFORM=x86-linux |
29 | PLATFORM=x86-linux |
30 | endif |
30 | endif |
| |
31 | ifdef CONFIG_TARGET_64BIT |
| |
32 | PLATFORM=64-linux |
| |
33 | endif |
31 | ifdef CONFIG_TARGET_SHARP |
34 | ifdef CONFIG_TARGET_SHARP |
32 | PLATFORM=sharp-linux |
35 | PLATFORM=sharp-linux |
33 | endif |
36 | endif |
34 | ifdef CONFIG_TARGET_IPAQ |
37 | ifdef CONFIG_TARGET_IPAQ |
35 | PLATFORM=ipaq-linux |
38 | PLATFORM=ipaq-linux |
36 | endif |
39 | endif |
37 | ifdef CONFIG_TARGET_RAMSES |
40 | ifdef CONFIG_TARGET_RAMSES |
38 | PLATFORM=ramses-linux |
41 | PLATFORM=ramses-linux |
@@ -108,16 +111,19 @@ ifdef CONFIG_OPTIMIZATIONS |
108 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) |
111 | export CFLAGS_RELEASE=$(patsubst "%,%,$(CONFIG_OPTIMIZATIONS)) |
109 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) |
112 | export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE)) |
110 | endif |
113 | endif |
111 | |
114 | |
112 | ifeq ($(STRIP),) |
115 | ifeq ($(STRIP),) |
113 | ifneq ($(CONFIG_TARGET_X86),) |
116 | ifneq ($(CONFIG_TARGET_X86),) |
114 | STRIP=strip |
117 | STRIP=strip |
115 | endif |
118 | endif |
| |
119 | ifneq ($(CONFIG_TARGET_64BIT),) |
| |
120 | STRIP=strip |
| |
121 | endif |
116 | ifneq ($(CONFIG_TARGET_IPAQ),) |
122 | ifneq ($(CONFIG_TARGET_IPAQ),) |
117 | STRIP=arm-linux-strip |
123 | STRIP=arm-linux-strip |
118 | endif |
124 | endif |
119 | ifneq ($(CONFIG_TARGET_SHARP),) |
125 | ifneq ($(CONFIG_TARGET_SHARP),) |
120 | STRIP=arm-linux-strip |
126 | STRIP=arm-linux-strip |
121 | endif |
127 | endif |
122 | ifneq ($(CONFIG_TARGET_RAMSES),) |
128 | ifneq ($(CONFIG_TARGET_RAMSES),) |
123 | STRIP=arm-linux-strip |
129 | STRIP=arm-linux-strip |
|
|
diff --git a/config.in b/config.in index 61107e7..e979966 100644 --- a/ config.in+++ b/ config.in |
|
@@ -30,16 +30,20 @@ choice |
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 | |
38 | endchoice |
42 | endchoice |
39 | |
43 | |
40 | config OE_BUILD_DIR |
44 | config 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 | |
45 | config OE_HOST_SYS |
49 | config OE_HOST_SYS |
|