This patch adds a target for the IBM PowerXCell Accelerator Board. (aka mvXCell-8i from MatrixVision or GigaAccel 180 from Fixstars)

http://us.fixstars.com/products/gigaaccel/

This build will create zImage suitable for TFTP boot image.

* v2
- add axonram device driver
- switch to 2.6.30.1

Signed-off-by: Akinobu Mita <mita@fixstars.com>

SVN-Revision: 16860
This commit is contained in:
Florian Fainelli
2009-07-16 10:19:13 +00:00
parent a4f397c5a5
commit 2ec0cba393
9 changed files with 675 additions and 3 deletions

View File

@@ -374,3 +374,18 @@ define KernelPackage/ps3vram/description
endef
$(eval $(call KernelPackage,ps3vram))
define KernelPackage/axonram
SUBMENU:=$(BLOCK_MENU)
TITLE:=Axon DDR2 memory device driver
DEPENDS:=@TARGET_pxcab
KCONFIG:=CONFIG_AXON_RAM
FILES:=$(LINUX_DIR)/arch/powerpc/sysdev/axonram.$(LINUX_KMOD_SUFFIX)
AUTOLOAD:=$(call AutoLoad,01,axonram)
endef
define KernelPackage/axonram/description
Kernel support for Axon DDR2 memory device
endef
$(eval $(call KernelPackage,axonram))