From 33db0e0d4dc12c16792855872db97ddd50ce256a Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Fri, 13 Dec 2019 14:49:50 +0100 Subject: [PATCH] base: add uboot for imx8 as port that contains scripts to download and build uboot Fixes #3584 --- repos/base/ports/uboot.hash | 1 + repos/base/ports/uboot.port | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 repos/base/ports/uboot.hash create mode 100644 repos/base/ports/uboot.port diff --git a/repos/base/ports/uboot.hash b/repos/base/ports/uboot.hash new file mode 100644 index 000000000..6c3b30bd2 --- /dev/null +++ b/repos/base/ports/uboot.hash @@ -0,0 +1 @@ +f3fd6bdf4956fb3d4e9ae351030d8cc587f0ebcf diff --git a/repos/base/ports/uboot.port b/repos/base/ports/uboot.port new file mode 100644 index 000000000..90996f3ea --- /dev/null +++ b/repos/base/ports/uboot.port @@ -0,0 +1,12 @@ +LICENSE := GPLv2 +VERSION := git +DOWNLOADS := ubfg.git + +URL(ubfg) := https://github.com/alex-ab/ubfg.git +REV(ubfg) := 89bb867cb58fa9d8fb2e38b6d52256a68920354d +DIR(ubfg) := scripts + +default: $(DOWNLOADS) + $(VERBOSE)echo "building imx8q_evk uboot" + $(VERBOSE)mkdir -p imx8q_evk + $(VERBOSE)cd imx8q_evk && ../scripts/create_uboot_imx8q_evk && cd ..