From a48b869d5c241a0d630b2e19f2014ea1f357d4f6 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 23 Sep 2009 21:04:13 +0200 Subject: add google g1 device support - toolchain only - add tar.gz package backend - verified to work on device with a static linked mksh and eglibc --- target/Config.in | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'target/Config.in') diff --git a/target/Config.in b/target/Config.in index 8fa9731df..769e1de55 100644 --- a/target/Config.in +++ b/target/Config.in @@ -80,6 +80,9 @@ config ADK_wag54g config ADK_shuttle tristate +config ADK_g1 + tristate + config ADK_DEVICE string default "alix1c" if ADK_alix1c @@ -103,6 +106,7 @@ config ADK_DEVICE default "rescue-mipsel" if ADK_rescue_mipsel default "shuttle" if ADK_shuttle default "tomtom" if ADK_tomtom + default "g1" if ADK_g1 menu "Target system" @@ -178,6 +182,16 @@ config ADK_LINUX_ARM_TOMTOM Just toolchain support to cross-compile your own applications. +config ADK_LINUX_ARM_G1 + bool "Google G1 Applications" + select ADK_g1 + select ADK_DEVICE_NO_FPU + select ADK_EABI + select ADK_TOOLCHAIN_ONLY + help + Support for Google G1. + Just toolchain support to cross-compile your own + applications. #config ADK_LINUX_XSCALE_ZAURUS # bool "Zaurus SL-C3200" @@ -379,6 +393,7 @@ config ADK_TARGET_LIB_EGLIBC ADK_LINUX_RESCUE || \ ADK_LINUX_X86_64_SHUTTLE || \ ADK_LINUX_ARM_TOMTOM || \ + ADK_LINUX_ARM_G1 || \ ADK_LINUX_MIPS64_LEMOTE help http://www.eglibc.org @@ -395,6 +410,7 @@ config ADK_TARGET_LIB_GLIBC ADK_LINUX_RESCUE || \ ADK_LINUX_X86_64_SHUTTLE || \ ADK_LINUX_ARM_TOMTOM || \ + ADK_LINUX_ARM_G1 || \ ADK_LINUX_MIPS64_LEMOTE help http://www.gnu.org/libc @@ -606,6 +622,25 @@ config ADK_TARGET_ROOT_EXT4 endchoice +choice +prompt "Package backend format" + default ADK_TARGET_PACKAGE_IPKG + +config ADK_TARGET_PACKAGE_IPKG + boolean + prompt "ipkg package format" + select BUSYBOX_IPKG + help + Use ipkg package format. + +config ADK_TARGET_PACKAGE_TGZ + boolean + prompt "gzip compressed tar archive" + help + Use simple compressed tar archive. + +endchoice + #config ADK_SSP # bool "Enable Stack Smashing Protection" # default n -- cgit v1.2.3 From 2196fce0b2ee7d8188c1d34fc1d6bb6555538870 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 23 Sep 2009 21:18:02 +0200 Subject: add static application build barely tested, but working for mksh package and google g1 target --- target/Config.in | 7 ------- 1 file changed, 7 deletions(-) (limited to 'target/Config.in') diff --git a/target/Config.in b/target/Config.in index 769e1de55..0f993e0be 100644 --- a/target/Config.in +++ b/target/Config.in @@ -655,13 +655,6 @@ config ADK_CXX help Enable C++ Compiler and Libraries -config ADK_DEBUG - bool "Enable debug support" - default n - help - All packages and libc will be compiled and packaged with debug information. - Mostly useful for NFS root or big USB/CF disk setups. - config ADK_IPV6 bool "Enable IPv6 support" default n -- cgit v1.2.3