summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--Vars.make6
-rw-r--r--config.in4
2 files changed, 10 insertions, 0 deletions
diff --git a/Vars.make b/Vars.make
index 6a52a93..880ccf1 100644
--- a/Vars.make
+++ b/Vars.make
@@ -25,12 +25,15 @@ else
25 PLATFORM=sharp-linux 25 PLATFORM=sharp-linux
26endif 26endif
27 27
28ifdef CONFIG_TARGET_X86 28ifdef CONFIG_TARGET_X86
29 PLATFORM=x86-linux 29 PLATFORM=x86-linux
30endif 30endif
31ifdef CONFIG_TARGET_64BIT
32 PLATFORM=64-linux
33endif
31ifdef CONFIG_TARGET_SHARP 34ifdef CONFIG_TARGET_SHARP
32 PLATFORM=sharp-linux 35 PLATFORM=sharp-linux
33endif 36endif
34ifdef CONFIG_TARGET_IPAQ 37ifdef CONFIG_TARGET_IPAQ
35 PLATFORM=ipaq-linux 38 PLATFORM=ipaq-linux
36endif 39endif
@@ -110,12 +113,15 @@ export CFLAGS_RELEASE:=$(patsubst %",%,$(CFLAGS_RELEASE))
110endif 113endif
111 114
112ifeq ($(STRIP),) 115ifeq ($(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
diff --git a/config.in b/config.in
index 61107e7..e979966 100644
--- a/config.in
+++ b/config.in
@@ -32,12 +32,16 @@ choice
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<<<"