From 72f3b9196aa555549f42be09fcad5ef7c5b56801 Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Wed, 13 Jan 2016 05:58:28 -0800 Subject: elf2flt: Use openadk version of elf2flt elf2flt is now hosted on github here: https://github.com/uclinux-dev/elf2flt But, until arm support is upstream, we'll switch to Waldemar Brodkorb version of elf2flt. Signed-off-by: Bryan Hundven diff --git a/config/binutils/binutils.in.2 b/config/binutils/binutils.in.2 index e3d3799..3dafb0f 100644 --- a/config/binutils/binutils.in.2 +++ b/config/binutils/binutils.in.2 @@ -29,7 +29,7 @@ if ELF2FLT_GIT config ELF2FLT_GIT_CSET string prompt "git cset" - default "21c6a41885ad544763ccd19883c1353f3b0b7a47" + default "454b6b415a31959661406bdfbd9dad22229367bf" help Enter the git changeset to use. diff --git a/scripts/build/binutils/binutils.sh b/scripts/build/binutils/binutils.sh index 69605db..edaf818 100644 --- a/scripts/build/binutils/binutils.sh +++ b/scripts/build/binutils/binutils.sh @@ -25,7 +25,7 @@ do_binutils_get() { CT_GetCustom "elf2flt" "${CT_ELF2FLT_CUSTOM_VERSION}" \ "${CT_ELF2FLT_CUSTOM_LOCATION}" else - CT_GetGit elf2flt "${CT_ELF2FLT_GIT_CSET}" git://wh0rd.org/elf2flt.git + CT_GetGit elf2flt "${CT_ELF2FLT_GIT_CSET}" http://cgit.openadk.org/cgi/cgit/elf2flt.git fi fi } -- cgit v0.10.2-6-g49f6 From b44effbc0ec3bb8fd864ca90deebf97642d7498a Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Wed, 13 Jan 2016 06:03:27 -0800 Subject: linux: allow `arm*` to build headers for no-mmu Signed-off-by: Bryan Hundven diff --git a/scripts/build/kernel/linux.sh b/scripts/build/kernel/linux.sh index f0f2402..09a928d 100644 --- a/scripts/build/kernel/linux.sh +++ b/scripts/build/kernel/linux.sh @@ -10,6 +10,7 @@ CT_DoKernelTupleValues() { # while others must have a -linux tuple. Other targets # should be added here when someone starts to care about them. case "${CT_ARCH}" in + arm*) CT_TARGET_KERNEL="linux" ;; m68k) CT_TARGET_KERNEL="uclinux" ;; *) CT_Abort "Unsupported no-mmu arch '${CT_ARCH}'" esac -- cgit v0.10.2-6-g49f6