From cb428cf874551d1e71c4a15e07f9130d326ff560 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Sat, 29 Aug 2020 08:24:06 +0200 Subject: [PATCH] recipes-devtools: expand gcc-arm-none-eabi recipe Signed-off-by: Thomas Klaehn --- .../gcc-arm-none-eabi_%.bbappend | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 recipes-devtools/gcc-external-toolchain/gcc-arm-none-eabi_%.bbappend diff --git a/recipes-devtools/gcc-external-toolchain/gcc-arm-none-eabi_%.bbappend b/recipes-devtools/gcc-external-toolchain/gcc-arm-none-eabi_%.bbappend new file mode 100644 index 0000000..d19fe1f --- /dev/null +++ b/recipes-devtools/gcc-external-toolchain/gcc-arm-none-eabi_%.bbappend @@ -0,0 +1,12 @@ +do_install_append () { + install -d ${D}/lib64 + cd ${D}/ + ln -s /lib/ld-linux-x86-64.so.2 ${D}/lib64/ld-linux-x86-64.so.2 +} + +INSANE_SKIP_${PN} += " \ + arch \ + dev-so \ +" + +FILES_${PN} += "/lib64/ld-linux-x86-64.so.2"