diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2014-09-26 10:57:41 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-28 22:59:56 +0200 |
commit | 8c51c31de78d3b3721dd7c7d11c4f0bce3a43206 (patch) | |
tree | 8945148384c66367d5aa49b9d07317d255a6c133 | |
parent | 41d591e2056f42a689606f369b3e8d25ae0db9b3 (diff) | |
download | buildroot-8c51c31de78d3b3721dd7c7d11c4f0bce3a43206.tar.gz buildroot-8c51c31de78d3b3721dd7c7d11c4f0bce3a43206.zip |
linux: Add uImage support for MIPS architecture
uImage support for MIPS was added in the kernel on 2013-09-03, so we
allow to build uImage for MIPS in Buildroot.
Kernel commit:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4defe4559e86e26545ab2f542656a4b966dcde53
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | linux/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/Config.in b/linux/Config.in index 0ad8bce742..4a3c06425a 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -168,7 +168,8 @@ choice config BR2_LINUX_KERNEL_UIMAGE bool "uImage" depends on BR2_arc || BR2_arm || BR2_armeb || BR2_bfin || \ - BR2_powerpc || BR2_avr32 || BR2_sh || BR2_sh64 + BR2_powerpc || BR2_avr32 || BR2_sh || BR2_sh64 || \ + BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el select BR2_LINUX_KERNEL_UBOOT_IMAGE config BR2_LINUX_KERNEL_APPENDED_UIMAGE |