summaryrefslogtreecommitdiff
path: root/meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:32:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-18 15:36:06 +0000
commit673abd92f999829bdd67d0273c43570a62123a63 (patch)
tree63132d1ffc1cb5bf50d244b184ca8d58a9cbc85c /meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch
parentfed61beb31c47e2d96af905a7047fe78d64c9bd0 (diff)
downloadopenembedded-core-673abd92f999829bdd67d0273c43570a62123a63.tar.gz
openembedded-core-673abd92f999829bdd67d0273c43570a62123a63.tar.bz2
openembedded-core-673abd92f999829bdd67d0273c43570a62123a63.tar.xz
openembedded-core-673abd92f999829bdd67d0273c43570a62123a63.zip
conf/machine: Drop older machines with no recent updates
These are all moving to meta-extras. Ideally in the future machines such as these will be maintained to topic specific layers as we move to a more layer oriented model. If this causes a problem for anyone please discuss it on the mailing list. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch b/meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch
deleted file mode 100644
index 26cf38cc8..000000000
--- a/meta/recipes-kernel/linux/linux-mx31-2.6.19.2/mx31lite-boot.patch
+++ /dev/null
@@ -1,42 +0,0 @@
----
- arch/arm/boot/compressed/Makefile | 4 ++++
- arch/arm/boot/compressed/head-mx3.S | 17 +++++++++++++++++
- 2 files changed, 21 insertions(+)
-
-Index: linux-2.6.19.2/arch/arm/boot/compressed/Makefile
-===================================================================
---- linux-2.6.19.2.orig/arch/arm/boot/compressed/Makefile 2007-01-10 20:10:37.000000000 +0100
-+++ linux-2.6.19.2/arch/arm/boot/compressed/Makefile 2007-10-02 15:46:13.000000000 +0200
-@@ -50,6 +50,10 @@
- OBJS += head-at91rm9200.o
- endif
-
-+ifeq ($(CONFIG_ARCH_MX3),y)
-+OBJS += head-mx3.o
-+endif
-+
- ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
- ifeq ($(CONFIG_CPU_CP15),y)
- OBJS += big-endian.o
-Index: linux-2.6.19.2/arch/arm/boot/compressed/head-mx3.S
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ linux-2.6.19.2/arch/arm/boot/compressed/head-mx3.S 2007-10-02 16:00:13.000000000 +0200
-@@ -0,0 +1,17 @@
-+/*
-+ * linux/arch/arm/boot/compressed/head-mx3.S
-+ *
-+ * MX3 specific hacks. This is merged into head.S by the linker.
-+ *
-+ */
-+
-+#include <linux/linkage.h>
-+#include <asm/mach-types.h>
-+
-+ .section ".start", "ax"
-+
-+__MX3_start:
-+#ifdef CONFIG_MACH_MX31LITE
-+ mov r7, #(MACH_TYPE_MX31LITE & 0xff)
-+ orr r7, r7, #(MACH_TYPE_MX31LITE & 0xff00)
-+#endif