diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-10 22:48:33 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-10 22:48:33 +0000 |
commit | 2bda5979abe2e9fe1d6396adf0ab62cf377b8c9b (patch) | |
tree | e9099d63892920d923823b0c4fff50bfcc37a4f5 /target/linux/x86/geos/target.mk | |
parent | 10f5101af3ea207e34e12af417009422777d2bcb (diff) | |
download | upstream-2bda5979abe2e9fe1d6396adf0ab62cf377b8c9b.tar.gz upstream-2bda5979abe2e9fe1d6396adf0ab62cf377b8c9b.tar.bz2 upstream-2bda5979abe2e9fe1d6396adf0ab62cf377b8c9b.zip |
Geos -- new x86 subtarget definition This defines the Geos platform from Traverse Technologies in AUS.
This is a Geode LX800 with 512MB of DDR400 memory, 2 8139CP interfaces, 2 Solos ADSL2+ interfaces, USB, serial console, CF slot, and miniPCI slot.
I'll add support for the LEDs separately.
Signed-off-by: Philip A. Prindeville
SVN-Revision: 23390
Diffstat (limited to 'target/linux/x86/geos/target.mk')
-rw-r--r-- | target/linux/x86/geos/target.mk | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/x86/geos/target.mk b/target/linux/x86/geos/target.mk new file mode 100644 index 0000000000..0387a31128 --- /dev/null +++ b/target/linux/x86/geos/target.mk @@ -0,0 +1,25 @@ +BOARDNAME:=Traverse Geos +FEATURES:=squashfs pci usb gpio +DEFAULT_PACKAGES += kmod-ata-via-sata kmod-crypto-hw-geode \ + kmod-gpio-cs5535 kmod-gpio-nsc \ + kmod-wdt-geode kmod-hwmon-core kmod-hwmon-lm90 \ + kmod-8139cp kmod-solos-pci \ + kmod-i2c-core kmod-i2c-gpio \ + kmod-i2c-algo-bit kmod-i2c-algo-pca kmod-i2c-algo-pcf \ + kmod-usb-core kmod-usb2 kmod-usb-uhci \ + kmod-cfg80211 kmod-mac80211 \ + kmod-mppe kmod-pppoe kmod-pppoa kmod-pppol2tp \ + kmod-ath kmod-ath5k kmod-ath9k + +CS5535_MASK:=0x0E000048 + +CFLAGS += -Os -march=k6-2 -fno-align-functions -fno-align-loops -fno-align-jumps \ + -fno-align-labels + +define Target/Description + Build firmware images for Traverse Geos board +endef + +define KernelPackage/gpio-cs5535/install + sed -i -r -e 's/$$$$$$$$/ mask=$(CS5535_MASK)/' $(1)/etc/modules.d/??-gpio-cs5535 +endef |