diff options
author | Daniel Dickinson <crazycshore@gmail.com> | 2011-05-13 06:08:49 +0000 |
---|---|---|
committer | Daniel Dickinson <crazycshore@gmail.com> | 2011-05-13 06:08:49 +0000 |
commit | 8d66bf7e72970f4d65468c8ef5bced0a3a4f314c (patch) | |
tree | 11562150d68b5541c6831f925c1f7058a9eefab3 /target/linux/x86/alix2/target.mk | |
parent | 937362f270db8861cd046030869bdaac34582b94 (diff) | |
download | upstream-8d66bf7e72970f4d65468c8ef5bced0a3a4f314c.tar.gz upstream-8d66bf7e72970f4d65468c8ef5bced0a3a4f314c.tar.bz2 upstream-8d66bf7e72970f4d65468c8ef5bced0a3a4f314c.zip |
Add missed files from previous commit: This patch provides an image suitable for the alix2*, alix3, and alix6 headless (non-VGA equipped) SBC's.
Note that the Alix6 uses GPIO 27 to disable wireless transmit (W_DIS#), whereas on all other versions this is used to actuate the speaker.
GPIO 1 : SIM select (Alix6)
GPIO 6 : LED1
GPIO 25 : LED2
GPIO 27 : LED3 or RFKILL (Alix6)
GPIO 24 : Soft switch 1
No kernel version bump. Added i2c-scx200-acb for lm-sensors support.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
SVN-Revision: 26880
Diffstat (limited to 'target/linux/x86/alix2/target.mk')
-rw-r--r-- | target/linux/x86/alix2/target.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/target/linux/x86/alix2/target.mk b/target/linux/x86/alix2/target.mk new file mode 100644 index 0000000000..68e66b9635 --- /dev/null +++ b/target/linux/x86/alix2/target.mk @@ -0,0 +1,30 @@ +BOARDNAME:=PCEngines alix2 +FEATURES:=squashfs pci usb gpio +ALIX2_GPIO = $(if $(findstring 2.6.32,$(LINUX_VERSION)),gpio-cs5535,gpio-cs5535-new) +DEFAULT_PACKAGES += kmod-ata-via-sata \ + kmod-crypto-hw-geode kmow-crypto-ocf \ + kmod-$(ALIX2_GPIO) kmod-gpio-nsc \ + kmod-wdt-geode kmod-hwmon-core kmod-hwmon-lm90 \ + kmod-via-rhine kmod-leds-alix \ + kmod-i2c-core kmod-i2c-gpio \ + kmod-i2c-algo-bit kmod-i2c-algo-pca kmod-i2c-algo-pcf \ + kmod-i2c-scx200-acb \ + kmod-usb-core kmod-usb2 kmod-usb-uhci \ + kmod-cfg80211 kmod-mac80211 \ + kmod-mppe kmod-pppoe kmod-pppoa kmod-pppo2ltp \ + kmod-ath kmod-ath5k kmod-ath9k \ + bridge ppp ppp-mod-pppoa \ + libopenssl ocf-crypto-headers zlib hwclock hostapd + +CS5535_MASK:=0x0a400000 + +CFLAGS += -Os -pipe -march=k6-2 -fno-align-functions -fno-align-loops -fno-align-jumps \ + -fno-align-labels + +define Target/Description + Build firmware images for PCEngines alix2 board +endef + +define KernelPackage/$(GEOS_GPIO)/install + sed -i -r -e 's/$$$$$$$$/ mask=$(CS5535_MASK)/' $(1)/etc/modules.d/??-$(GEOS_GPIO) +endef |