From 89a4c2c61f00034ee031b62811c8a8cf4ba009b9 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 27 Jul 2022 18:35:02 +0200 Subject: u-boot-libre: remove nonfree firmware in drivers/dma/MCD_tasks.c This firmware lack corresponding source code. Signed-off-by: Denis 'GNUtoo' Carikli --- resources/u-boot/default/blobs.list | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'resources/u-boot/default') diff --git a/resources/u-boot/default/blobs.list b/resources/u-boot/default/blobs.list index ec6c20ee..d3153480 100644 --- a/resources/u-boot/default/blobs.list +++ b/resources/u-boot/default/blobs.list @@ -85,6 +85,11 @@ doc/board/freescale/imx8qxp_mek.rst doc/board/freescale/imx8mm_evk.rst # nonfree imx-sc-firmware-1.1.bin and firmware-imx-8.0.bin firmwares doc/board/advantech/imx8qm-rom7720-a1.rst +# Firmware without source code. Also removed by Debian in their u-boot[1] in +# commit: 14947286a0 Add Files-Excluded: to debian/copyright to document files +# to remove from upstream source tarball. +# [1]https://salsa.debian.org/debian/u-boot.git +drivers/dma/MCD_tasks.c # TODO doc/board/verdin-imx8mm.rst doc/board/toradex/colibri-imx8x.rst -- cgit v1.2.1 From 7b552bd29992e423755e0306ea115f726854cbf0 Mon Sep 17 00:00:00 2001 From: Alper Nebi Yasak Date: Thu, 25 Aug 2022 20:07:27 +0300 Subject: download/u-boot: Support reading tree and revision from board.cfg Boards may want to specify a board-specific U-Boot revision. At the very least, pseudo-boards for u-boot-libre releases will need to specify their U-Boot versions somehow. Copy the existing mechanism from download/coreboot for specifying build info with board.cfg files. Specify the commit hash for the 'v2021.07' pseudo-board, and 'master' as the default. Signed-off-by: Alper Nebi Yasak --- resources/u-boot/default/board.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 resources/u-boot/default/board.cfg (limited to 'resources/u-boot/default') diff --git a/resources/u-boot/default/board.cfg b/resources/u-boot/default/board.cfg new file mode 100644 index 00000000..b821b351 --- /dev/null +++ b/resources/u-boot/default/board.cfg @@ -0,0 +1,2 @@ +ubtree="default" +ubrevision="master" -- cgit v1.2.1