summaryrefslogtreecommitdiff
path: root/classes/linux-append-dtb.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'classes/linux-append-dtb.bbclass')
-rw-r--r--classes/linux-append-dtb.bbclass8
1 files changed, 0 insertions, 8 deletions
diff --git a/classes/linux-append-dtb.bbclass b/classes/linux-append-dtb.bbclass
deleted file mode 100644
index 6d3e52d..0000000
--- a/classes/linux-append-dtb.bbclass
+++ /dev/null
@@ -1,8 +0,0 @@
-# build devicetree blob, append to kernel, and create uImage
-do_compile_append() {
- if [ -n "${DTB_APPEND}" ]; then
- oe_runmake ${DTB_APPEND}.dtb
- cat arch/${ARCH}/boot/zImage arch/${ARCH}/boot/dts/${DTB_APPEND}.dtb > arch/${ARCH}/boot/zImage.dtb
- uboot-mkimage -A ${UBOOT_ARCH} -O linux -T kernel -C none -a ${UBOOT_LOADADDRESS} -e ${UBOOT_ENTRYPOINT} -n "${DISTRO_NAME}/${PV}/${MACHINE}" -d arch/${ARCH}/boot/zImage.dtb arch/${ARCH}/boot/uImage
- fi
-}