summaryrefslogtreecommitdiffstats
path: root/Makefile.config
diff options
context:
space:
mode:
authorDennis Gilmore <dennis@ausil.us>2011-08-12 00:37:40 -0500
committerDennis Gilmore <dennis@ausil.us>2011-08-16 11:34:23 -0500
commit3e616b4b287d4859d0de712676c5bbc74d996036 (patch)
tree3b47cca6e09fbfa828392788570a43219100695b /Makefile.config
parent41dc1eca4d338b45ca71f210d8a874f2820d265a (diff)
downloadkernel-3e616b4b287d4859d0de712676c5bbc74d996036.tar.gz
kernel-3e616b4b287d4859d0de712676c5bbc74d996036.tar.xz
kernel-3e616b4b287d4859d0de712676c5bbc74d996036.zip
tweak the arm configs a little
build a up image on armv5tel its a basic qemu image. setup to make configs for building kernels on hardware floating point arm arches
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config13
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile.config b/Makefile.config
index 7415c915..ccb035d7 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -9,7 +9,9 @@ CONFIGFILES = \
$(CFG)-i686-PAE.config $(CFG)-i686-PAEdebug.config \
$(CFG)-x86_64.config $(CFG)-x86_64-debug.config \
$(CFG)-s390x.config \
- $(CFG)-arm.config $(CFG)-armv7l-omap.config $(CFG)-armv7l-tegra.config \
+ $(CFG)-arm.config $(CFG)-armv5tel.config \
+ $(CFG)-armv7l-omap.config $(CFG)-armv7l-tegra.config \
+ $(CFG)-armv7hl-omap.config $(CFG)-armv7hl-tegra.config \
$(CFG)-ppc.config $(CFG)-ppc-smp.config \
$(CFG)-sparc64.config \
$(CFG)-ppc64.config $(CFG)-ppc64-debug.config \
@@ -111,12 +113,21 @@ kernel-$(VERSION)-s390x.config: config-s390x temp-s390-generic
kernel-$(VERSION)-arm.config: /dev/null temp-arm-generic
perl merge.pl $^ arm > $@
+kernel-$(VERSION)-armv5tel.config: /dev/null temp-arm-generic
+ perl merge.pl $^ arm > $@
+
kernel-$(VERSION)-armv7l-omap.config: /dev/null temp-armv7l-omap-generic
perl merge.pl $^ arm > $@
kernel-$(VERSION)-armv7l-tegra.config: /dev/null temp-armv7l-tegra
perl merge.pl $^ arm > $@
+kernel-$(VERSION)-armv7hl-omap.config: /dev/null temp-armv7l-omap-generic
+ perl merge.pl $^ arm > $@
+
+kernel-$(VERSION)-armv7hl-tegra.config: /dev/null temp-armv7l-tegra
+ perl merge.pl $^ arm > $@
+
kernel-$(VERSION)-ppc.config: /dev/null temp-powerpc32-generic
perl merge.pl $^ powerpc > $@