diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-24 22:09:39 +0200 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-24 22:09:39 +0200 |
commit | 97a4caf877fd9d1eb4f63acc21ae8df1003fc353 (patch) | |
tree | 124d510e70e8fdb12130b93584f49e75f5567eb0 /recipes/linux/linux-kirkwood_2.6.32-rc4.bb | |
parent | 42b73a456bc890fee7fdeb1ba15f59754c673b88 (diff) |
linux-kirkwood: disabled ubi verify in defconfig (CONFIG_MTD_NAND_VERIFY_WRITE)
verification of 2048 byte pages does not work properly
also added MACHINE sheevaplug to recipe
Diffstat (limited to 'recipes/linux/linux-kirkwood_2.6.32-rc4.bb')
-rw-r--r-- | recipes/linux/linux-kirkwood_2.6.32-rc4.bb | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/recipes/linux/linux-kirkwood_2.6.32-rc4.bb b/recipes/linux/linux-kirkwood_2.6.32-rc4.bb index e9da398142..bf33146fb4 100644 --- a/recipes/linux/linux-kirkwood_2.6.32-rc4.bb +++ b/recipes/linux/linux-kirkwood_2.6.32-rc4.bb @@ -2,10 +2,7 @@ DESCRIPTION = "Linux Kernel for Marvell Kirkwood based devices" SECTION = "kernel" LICENSE = "GPL" -COMPATIBLE_MACHINE = "openrd-base|openrd-client" - -# SheevaPlug still needs testing -#COMPATIBLE_MACHINE = "(openrd-base|sheevaplug)" +COMPATIBLE_MACHINE = "openrd-base|openrd-client|sheevaplug" require linux.inc @@ -19,10 +16,10 @@ SRC_URI = "git://repo.or.cz/linux-2.6/linux-2.6-openrd.git;protocol=git \ # update machine types list for ARM architecture, only for machines that need it do_arm_mach_types() { - if test ${MACHINE} == openrd-base || test ${MACHINE} == openrd-client; then +# if test ${MACHINE} == openrd-base || test ${MACHINE} == openrd-client; then curl -o mach-types "http://www.arm.linux.org.uk/developer/machines/download.php" && \ cp mach-types arch/arm/tools/mach-types - fi +# fi } addtask arm_mach_types after do_patch before do_configure |