forked from pool/u-boot
Accepting request 373641 from Base:System
OBS-URL: https://build.opensuse.org/request/show/373641 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=70
This commit is contained in:
parent
795ea57a6f
commit
ee1fa58cf2
@ -1,37 +0,0 @@
|
|||||||
From 098b825ca50657cdf737aee4cf1da9eaae05d42c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Alexander Graf <agraf@suse.de>
|
|
||||||
Date: Tue, 1 Mar 2016 09:52:28 +0100
|
|
||||||
Subject: [PATCH] omap3: Use raw SPL by default for mmc1
|
|
||||||
|
|
||||||
Now that we fall back to the FS code path when we don't find u-boot
|
|
||||||
at the raw sector offset, there is no good reason to not default to
|
|
||||||
raw boot.
|
|
||||||
|
|
||||||
With this patch, I can successfully boot u-boot from a raw sector
|
|
||||||
offset on beagle-xm.
|
|
||||||
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
---
|
|
||||||
|
|
||||||
I think this patch is safe and important enough to count as a bug fix for
|
|
||||||
2016.03.
|
|
||||||
|
|
||||||
arch/arm/cpu/armv7/omap-common/boot-common.c | 2 --
|
|
||||||
1 file changed, 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/arch/arm/cpu/armv7/omap-common/boot-common.c b/arch/arm/cpu/armv7/omap-common/boot-common.c
|
|
||||||
index 0456263..ed9ba7b 100644
|
|
||||||
--- a/arch/arm/cpu/armv7/omap-common/boot-common.c
|
|
||||||
+++ b/arch/arm/cpu/armv7/omap-common/boot-common.c
|
|
||||||
@@ -111,8 +111,6 @@ void save_omap_boot_params(void)
|
|
||||||
(boot_device <= MMC_BOOT_DEVICES_END)) {
|
|
||||||
switch (boot_device) {
|
|
||||||
case BOOT_DEVICE_MMC1:
|
|
||||||
- boot_mode = MMCSD_MODE_FS;
|
|
||||||
- break;
|
|
||||||
case BOOT_DEVICE_MMC2:
|
|
||||||
boot_mode = MMCSD_MODE_RAW;
|
|
||||||
break;
|
|
||||||
--
|
|
||||||
1.8.5.6
|
|
||||||
|
|
@ -26,7 +26,7 @@ armv7_boards="$armv7_boards colibri_t20 paz00 jetson-tk1"
|
|||||||
# Rockchip
|
# Rockchip
|
||||||
armv7_boards="$armv7_boards firefly-rk3288"
|
armv7_boards="$armv7_boards firefly-rk3288"
|
||||||
|
|
||||||
aarch64_boards="p2371-2180"
|
aarch64_boards="p2371-2180 rpi_3"
|
||||||
|
|
||||||
ppc_boards="qemu-ppce500"
|
ppc_boards="qemu-ppce500"
|
||||||
|
|
||||||
|
150
rpi3.patch
Normal file
150
rpi3.patch
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
--- arch/arm/cpu/armv8/generic_timer.c
|
||||||
|
+++ arch/arm/cpu/armv8/generic_timer.c
|
||||||
|
@@ -9,6 +9,8 @@
|
||||||
|
#include <command.h>
|
||||||
|
#include <asm/system.h>
|
||||||
|
|
||||||
|
+#ifndef CONFIG_SYS_TIMER_COUNTER
|
||||||
|
+
|
||||||
|
/*
|
||||||
|
* Generic timer implementation of get_tbclk()
|
||||||
|
*/
|
||||||
|
@@ -51,3 +53,5 @@
|
||||||
|
|
||||||
|
return ticks;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+#endif
|
||||||
|
--- arch/arm/mach-bcm283x/Kconfig
|
||||||
|
+++ arch/arm/mach-bcm283x/Kconfig
|
||||||
|
@@ -13,11 +13,16 @@
|
||||||
|
bool "Raspberry Pi 2"
|
||||||
|
select CPU_V7
|
||||||
|
|
||||||
|
+config TARGET_RPI_3
|
||||||
|
+ bool "Raspberry Pi 3"
|
||||||
|
+ select ARM64
|
||||||
|
+
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
config SYS_BOARD
|
||||||
|
default "rpi" if TARGET_RPI
|
||||||
|
default "rpi_2" if TARGET_RPI_2
|
||||||
|
+ default "rpi_3" if TARGET_RPI_3
|
||||||
|
|
||||||
|
config SYS_VENDOR
|
||||||
|
default "raspberrypi"
|
||||||
|
@@ -28,5 +33,6 @@
|
||||||
|
config SYS_CONFIG_NAME
|
||||||
|
default "rpi" if TARGET_RPI
|
||||||
|
default "rpi_2" if TARGET_RPI_2
|
||||||
|
+ default "rpi_3" if TARGET_RPI_3
|
||||||
|
|
||||||
|
endmenu
|
||||||
|
--- board/raspberrypi/rpi/rpi.c
|
||||||
|
+++ board/raspberrypi/rpi/rpi.c
|
||||||
|
@@ -21,6 +21,30 @@
|
||||||
|
|
||||||
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
+#ifdef CONFIG_ARM64
|
||||||
|
+#include <asm/armv8/mmu.h>
|
||||||
|
+
|
||||||
|
+static struct mm_region rpi_mem_map[] = {
|
||||||
|
+ {
|
||||||
|
+ .base = 0x0UL,
|
||||||
|
+ .size = 0x3f000000UL,
|
||||||
|
+ .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
||||||
|
+ PTE_BLOCK_INNER_SHARE
|
||||||
|
+ }, {
|
||||||
|
+ .base = 0x3f000000UL,
|
||||||
|
+ .size = 0xc1000000UL,
|
||||||
|
+ .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
||||||
|
+ PTE_BLOCK_NON_SHARE |
|
||||||
|
+ PTE_BLOCK_PXN | PTE_BLOCK_UXN
|
||||||
|
+ }, {
|
||||||
|
+ /* List terminator */
|
||||||
|
+ 0,
|
||||||
|
+ }
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+struct mm_region *mem_map = rpi_mem_map;
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
static const struct bcm2835_gpio_platdata gpio_platdata = {
|
||||||
|
.base = BCM2835_GPIO_BASE,
|
||||||
|
};
|
||||||
|
@@ -37,7 +61,11 @@
|
||||||
|
.base = 0x20201000,
|
||||||
|
#endif
|
||||||
|
.type = TYPE_PL011,
|
||||||
|
+#ifdef CONFIG_TARGET_RPI_3
|
||||||
|
+ .clock = 48000000,
|
||||||
|
+#else
|
||||||
|
.clock = 3000000,
|
||||||
|
+#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
U_BOOT_DEVICE(bcm2835_serials) = {
|
||||||
|
--- board/raspberrypi/rpi_3/Makefile
|
||||||
|
+++ board/raspberrypi/rpi_3/Makefile
|
||||||
|
@@ -0,0 +1,8 @@
|
||||||
|
+#
|
||||||
|
+# (C) Copyright 2012,2015 Stephen Warren
|
||||||
|
+#
|
||||||
|
+# SPDX-License-Identifier: GPL-2.0
|
||||||
|
+#
|
||||||
|
+
|
||||||
|
+obj-y := ../rpi/rpi.o
|
||||||
|
+
|
||||||
|
--- configs/rpi_3_defconfig
|
||||||
|
+++ configs/rpi_3_defconfig
|
||||||
|
@@ -0,0 +1,10 @@
|
||||||
|
+CONFIG_ARM=y
|
||||||
|
+CONFIG_ARCH_BCM283X=y
|
||||||
|
+CONFIG_TARGET_RPI_3=y
|
||||||
|
+CONFIG_SYS_PROMPT="U-Boot> "
|
||||||
|
+# CONFIG_CMD_IMLS is not set
|
||||||
|
+# CONFIG_CMD_FLASH is not set
|
||||||
|
+# CONFIG_CMD_FPGA is not set
|
||||||
|
+CONFIG_CMD_GPIO=y
|
||||||
|
+CONFIG_PHYS_TO_BUS=y
|
||||||
|
+CONFIG_ARMV8_MULTIENTRY=y
|
||||||
|
--- drivers/video/bcm2835.c
|
||||||
|
+++ drivers/video/bcm2835.c
|
||||||
|
@@ -106,6 +106,10 @@
|
||||||
|
|
||||||
|
gd->fb_base = bus_to_phys(
|
||||||
|
msg_setup->allocate_buffer.body.resp.fb_address);
|
||||||
|
+
|
||||||
|
+#ifdef CONFIG_ARM64
|
||||||
|
+ lcd_set_flush_dcache(1);
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void lcd_enable(void)
|
||||||
|
--- include/configs/rpi_3.h
|
||||||
|
+++ include/configs/rpi_3.h
|
||||||
|
@@ -0,0 +1,22 @@
|
||||||
|
+/*
|
||||||
|
+ * (C) Copyright 2012,2015 Stephen Warren
|
||||||
|
+ *
|
||||||
|
+ * SPDX-License-Identifier: GPL-2.0
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+#ifndef __CONFIG_H
|
||||||
|
+#define __CONFIG_H
|
||||||
|
+
|
||||||
|
+#define CONFIG_SKIP_LOWLEVEL_INIT
|
||||||
|
+#define CONFIG_BCM2836
|
||||||
|
+#define CONFIG_SYS_CACHELINE_SIZE 64
|
||||||
|
+
|
||||||
|
+#include "rpi-common.h"
|
||||||
|
+
|
||||||
|
+#undef CONFIG_SYS_TEXT_BASE
|
||||||
|
+#define CONFIG_SYS_TEXT_BASE 0x00000000
|
||||||
|
+
|
||||||
|
+/* Have release address at the end of 256MB for now */
|
||||||
|
+#define CPU_RELEASE_ADDR 0xFFFFFF0
|
||||||
|
+
|
||||||
|
+#endif
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cc745572b5602e1dc329837540d8501ceab0b7ce80e78e01f8df5bc26cdd1044
|
|
||||||
size 11084065
|
|
3
u-boot-2016.03.tar.bz2
Normal file
3
u-boot-2016.03.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e49337262ecac44dbdeac140f2c6ebd1eba345e0162b0464172e7f05583ed7bb
|
||||||
|
size 11076762
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-a10-olinuxino-lime
|
Name: u-boot-a10-olinuxino-lime
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the a10-olinuxino-lime arm platform
|
Summary: The u-boot firmware for the a10-olinuxino-lime arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A10-OLinuXino-Lime_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A10-OLinuXino-Lime_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-a13-olinuxino
|
Name: u-boot-a13-olinuxino
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the a13-olinuxino arm platform
|
Summary: The u-boot firmware for the a13-olinuxino arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXino_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXino_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-a13-olinuxinom
|
Name: u-boot-a13-olinuxinom
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the a13-olinuxinom arm platform
|
Summary: The u-boot firmware for the a13-olinuxinom arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXinoM_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXinoM_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxino-lime
|
Name: u-boot-a20-olinuxino-lime
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the a20-olinuxino-lime arm platform
|
Summary: The u-boot firmware for the a20-olinuxino-lime arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxino-lime2
|
Name: u-boot-a20-olinuxino-lime2
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform
|
Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime2_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime2_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxinomicro
|
Name: u-boot-a20-olinuxinomicro
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the a20-olinuxinomicro arm platform
|
Summary: The u-boot firmware for the a20-olinuxinomicro arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino_MICRO_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino_MICRO_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-am335xboneblack
|
Name: u-boot-am335xboneblack
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the am335xboneblack arm platform
|
Summary: The u-boot firmware for the am335xboneblack arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_boneblack_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_boneblack_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-am335xevm
|
Name: u-boot-am335xevm
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the am335xevm arm platform
|
Summary: The u-boot firmware for the am335xevm arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_evm_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am335x_evm_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-am57xxevm
|
Name: u-boot-am57xxevm
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the am57xxevm arm platform
|
Summary: The u-boot firmware for the am57xxevm arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-am57xxevmnodt
|
Name: u-boot-am57xxevmnodt
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the am57xxevmnodt arm platform
|
Summary: The u-boot firmware for the am57xxevmnodt arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_nodt_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" am57xx_evm_nodt_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-arndale
|
Name: u-boot-arndale
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the arndale arm platform
|
Summary: The u-boot firmware for the arndale arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" arndale_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" arndale_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-bananapi
|
Name: u-boot-bananapi
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the bananapi arm platform
|
Summary: The u-boot firmware for the bananapi arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-colibrit20
|
Name: u-boot-colibrit20
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the colibrit20 arm platform
|
Summary: The u-boot firmware for the colibrit20 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" colibri_t20_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" colibri_t20_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-cubieboard
|
Name: u-boot-cubieboard
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the cubieboard arm platform
|
Summary: The u-boot firmware for the cubieboard arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-cubieboard2
|
Name: u-boot-cubieboard2
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the cubieboard2 arm platform
|
Summary: The u-boot firmware for the cubieboard2 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-cubietruck
|
Name: u-boot-cubietruck
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the cubietruck arm platform
|
Summary: The u-boot firmware for the cubietruck arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-firefly-rk3288
|
Name: u-boot-firefly-rk3288
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the firefly-rk3288 arm platform
|
Summary: The u-boot firmware for the firefly-rk3288 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" firefly-rk3288_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" firefly-rk3288_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-highbank
|
Name: u-boot-highbank
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the highbank arm platform
|
Summary: The u-boot firmware for the highbank arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" highbank_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" highbank_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-hyundaia7hd
|
Name: u-boot-hyundaia7hd
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the hyundaia7hd arm platform
|
Summary: The u-boot firmware for the hyundaia7hd arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Hyundai_A7HD_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Hyundai_A7HD_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-jetson-tk1
|
Name: u-boot-jetson-tk1
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the jetson-tk1 arm platform
|
Summary: The u-boot firmware for the jetson-tk1 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" jetson-tk1_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" jetson-tk1_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-melea1000
|
Name: u-boot-melea1000
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the melea1000 arm platform
|
Summary: The u-boot firmware for the melea1000 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Mele_A1000_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Mele_A1000_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-merriia80optimus
|
Name: u-boot-merriia80optimus
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the merriia80optimus arm platform
|
Summary: The u-boot firmware for the merriia80optimus arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Merrii_A80_Optimus_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Merrii_A80_Optimus_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-mx53loco
|
Name: u-boot-mx53loco
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the mx53loco arm platform
|
Summary: The u-boot firmware for the mx53loco arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-mx6cuboxi
|
Name: u-boot-mx6cuboxi
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the mx6cuboxi arm platform
|
Summary: The u-boot firmware for the mx6cuboxi arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-mx6qsabrelite
|
Name: u-boot-mx6qsabrelite
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the mx6qsabrelite arm platform
|
Summary: The u-boot firmware for the mx6qsabrelite arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-odroid-xu3
|
Name: u-boot-odroid-xu3
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the odroid-xu3 arm platform
|
Summary: The u-boot firmware for the odroid-xu3 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-xu3_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-xu3_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-odroid
|
Name: u-boot-odroid
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the odroid arm platform
|
Summary: The u-boot firmware for the odroid arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-omap3beagle
|
Name: u-boot-omap3beagle
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the omap3beagle arm platform
|
Summary: The u-boot firmware for the omap3beagle arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap3_beagle_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap3_beagle_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-omap4panda
|
Name: u-boot-omap4panda
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the omap4panda arm platform
|
Summary: The u-boot firmware for the omap4panda arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap4_panda_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" omap4_panda_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-orangepipc
|
Name: u-boot-orangepipc
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the orangepipc arm platform
|
Summary: The u-boot firmware for the orangepipc arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" orangepi_pc_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" orangepi_pc_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-p2371-2180
|
Name: u-boot-p2371-2180
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the p2371-2180 arm platform
|
Summary: The u-boot firmware for the p2371-2180 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" p2371-2180_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" p2371-2180_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-paz00
|
Name: u-boot-paz00
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the paz00 arm platform
|
Summary: The u-boot firmware for the paz00 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" paz00_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" paz00_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-pcm051rev3
|
Name: u-boot-pcm051rev3
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the pcm051rev3 arm platform
|
Summary: The u-boot firmware for the pcm051rev3 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pcm051_rev3_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pcm051_rev3_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-qemu-ppce500
|
Name: u-boot-qemu-ppce500
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the qemu-ppce500 arm platform
|
Summary: The u-boot firmware for the qemu-ppce500 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" qemu-ppce500_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" qemu-ppce500_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-rpi
|
Name: u-boot-rpi
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the rpi arm platform
|
Summary: The u-boot firmware for the rpi arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-rpi2
|
Name: u-boot-rpi2
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the rpi2 arm platform
|
Summary: The u-boot firmware for the rpi2 arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_2_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_2_defconfig
|
||||||
|
1081
u-boot-rpi3.changes
Normal file
1081
u-boot-rpi3.changes
Normal file
File diff suppressed because it is too large
Load Diff
182
u-boot-rpi3.spec
Normal file
182
u-boot-rpi3.spec
Normal file
@ -0,0 +1,182 @@
|
|||||||
|
#
|
||||||
|
# spec file for package u-boot-rpi3
|
||||||
|
#
|
||||||
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define x_loader 0
|
||||||
|
%define origen_spl 0
|
||||||
|
%define sunxi_spl 0
|
||||||
|
%define arndale_spl 0
|
||||||
|
%define cuboxi_spl 0
|
||||||
|
%define udoo_spl 0
|
||||||
|
|
||||||
|
# archive_version differs from version for RC version only
|
||||||
|
%define archive_version 2016.03
|
||||||
|
|
||||||
|
Name: u-boot-rpi3
|
||||||
|
Version: 2016.03
|
||||||
|
Release: 0
|
||||||
|
Summary: The u-boot firmware for the rpi3 arm platform
|
||||||
|
License: GPL-2.0
|
||||||
|
Group: System/Boot
|
||||||
|
Url: http://www.denx.de/wiki/U-Boot
|
||||||
|
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{archive_version}.tar.bz2
|
||||||
|
Source2: arndale-bl1.img
|
||||||
|
Source300: u-boot-rpmlintrc
|
||||||
|
# Fix exynos KVM support
|
||||||
|
Patch1: u-boot-exynos.patch
|
||||||
|
# Add EFI support. Will be upstream in the next version of u-boot.
|
||||||
|
Patch3: efi.patch
|
||||||
|
Patch4: efi2.patch
|
||||||
|
# Set default environment slightly different for EFI, so it finds our dtbs
|
||||||
|
Patch5: efi-default-env.patch
|
||||||
|
# Move omap3 to distro boot method
|
||||||
|
Patch6: omap3-Move-to-distro-bootcmd.patch
|
||||||
|
# efi: Run memory node fixups in device tree
|
||||||
|
Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
||||||
|
# Allow grub2 to find its config file
|
||||||
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
|
# Fix Raspberry Pi 1 build
|
||||||
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
|
# Ensure we mark the device tree as reserved
|
||||||
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
# Arndale board need DTC >= 1.4
|
||||||
|
BuildRequires: bc
|
||||||
|
BuildRequires: dtc >= 1.4.0
|
||||||
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
# Owns /usr/share/qemu directory
|
||||||
|
BuildRequires: qemu
|
||||||
|
Provides: qemu-ppc:%{_datadir}/qemu/u-boot.e500
|
||||||
|
%endif
|
||||||
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
||||||
|
# Owns /boot/vc directory
|
||||||
|
BuildRequires: raspberrypi-firmware
|
||||||
|
%endif
|
||||||
|
Provides: u-boot-loader
|
||||||
|
Conflicts: otherproviders(u-boot-loader)
|
||||||
|
%if %x_loader == 1
|
||||||
|
Obsoletes: x-loader-rpi3
|
||||||
|
Provides: x-loader-rpi3
|
||||||
|
%endif
|
||||||
|
ExclusiveArch: aarch64
|
||||||
|
|
||||||
|
%description
|
||||||
|
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
|
||||||
|
This package contains the firmware for the rpi3 arm platform.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation for the u-boot Firmware
|
||||||
|
Group: Documentation/Other
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
|
||||||
|
This package contains documentation for u-boot firmware
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n u-boot-%{archive_version}
|
||||||
|
%patch1 -p1
|
||||||
|
%patch3 -p1
|
||||||
|
%patch4 -p1
|
||||||
|
%patch5 -p1
|
||||||
|
%patch6 -p1
|
||||||
|
%patch7 -p1
|
||||||
|
%patch8 -p1
|
||||||
|
%patch9 -p1
|
||||||
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
|
%build
|
||||||
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_defconfig
|
||||||
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
|
# Chromebook ARM (snow) and HP Chromebook 11 (spring) need a uImage format
|
||||||
|
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
|
||||||
|
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
|
%define uboot_dir /boot
|
||||||
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2"
|
||||||
|
%define uboot_dir /boot/vc
|
||||||
|
%endif
|
||||||
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
%define uboot_dir %{_datadir}/qemu
|
||||||
|
%endif
|
||||||
|
%if "%{name}" == "u-boot-jetson-tk1"
|
||||||
|
# tegra-uboot-flasher needs several intermediate files, under their original name.
|
||||||
|
for f in u-boot u-boot.dtb u-boot-dtb-tegra.bin u-boot-nodtb-tegra.bin; do
|
||||||
|
install -D -m 0644 $f %{buildroot}/boot/$f
|
||||||
|
done
|
||||||
|
%else
|
||||||
|
# Some times u-boot needs a dtb to configure itself appended to the binary.
|
||||||
|
# In that case prefer the one with a working dtb already appended.
|
||||||
|
if [ -f u-boot-dtb-tegra.bin ]; then
|
||||||
|
install -D -m 0644 u-boot-dtb-tegra.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||||
|
elif [ -f u-boot-dtb.bin ]; then
|
||||||
|
install -D -m 0644 u-boot-dtb.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||||
|
else
|
||||||
|
install -D -m 0644 u-boot.bin %{buildroot}%{uboot_dir}/u-boot.bin
|
||||||
|
fi
|
||||||
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
mv %{buildroot}%{uboot_dir}/u-boot.bin %{buildroot}%{uboot_dir}/u-boot.e500
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
%if %x_loader == 1
|
||||||
|
install -D -m 0755 MLO %{buildroot}/boot/MLO
|
||||||
|
%endif
|
||||||
|
%if %origen_spl == 1
|
||||||
|
install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
|
||||||
|
%endif
|
||||||
|
%if %arndale_spl == 1
|
||||||
|
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
|
||||||
|
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
|
||||||
|
%endif
|
||||||
|
%if %sunxi_spl == 1
|
||||||
|
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
|
||||||
|
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
|
||||||
|
%endif
|
||||||
|
%if %cuboxi_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
||||||
|
%endif
|
||||||
|
%if %udoo_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{uboot_dir}/*
|
||||||
|
%doc Licenses/gpl-2.0.txt README
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%defattr(-,root,root)
|
||||||
|
# Generic documents
|
||||||
|
%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands
|
||||||
|
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
|
||||||
|
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
|
||||||
|
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
|
||||||
|
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST
|
||||||
|
# Copy some useful kermit scripts as well
|
||||||
|
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
|
||||||
|
# Now any h/w dependent Documentation
|
||||||
|
%doc doc/README.ARM-memory-map
|
||||||
|
|
||||||
|
%changelog
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-snow
|
Name: u-boot-snow
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the snow arm platform
|
Summary: The u-boot firmware for the snow arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" snow_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" snow_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-spring
|
Name: u-boot-spring
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the spring arm platform
|
Summary: The u-boot firmware for the spring arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" spring_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" spring_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl 1
|
%define udoo_spl 1
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-udoo
|
Name: u-boot-udoo
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the udoo arm platform
|
Summary: The u-boot firmware for the udoo arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" udoo_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" udoo_defconfig
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 15 08:47:35 UTC 2016 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2016.03
|
||||||
|
- Remove upstreamed patch:
|
||||||
|
* omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 13 21:48:46 UTC 2016 - dmueller@suse.com
|
||||||
|
|
||||||
|
- add support for Raspberry Pi 3 (rpi3.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
Wed Mar 9 22:50:22 UTC 2016 - agraf@suse.com
|
||||||
|
|
||||||
|
@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# 'archive_version' differs from 'version' for RC version only
|
# 'archive_version' differs from 'version' for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot
|
Name: u-boot
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools for the u-boot Firmware
|
Summary: Tools for the u-boot Firmware
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
%define udoo_spl UDOO_SPL
|
%define udoo_spl UDOO_SPL
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.03-rc3
|
%define archive_version 2016.03
|
||||||
|
|
||||||
Name: u-boot-BOARDNAME
|
Name: u-boot-BOARDNAME
|
||||||
Version: 2016.03~rc3
|
Version: 2016.03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The u-boot firmware for the BOARDNAME arm platform
|
Summary: The u-boot firmware for the BOARDNAME arm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -53,10 +53,9 @@ Patch7: efi_loader-Call-fdt-preparation-functions.patch
|
|||||||
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
Patch8: efi_loader-Pass-proper-device-path-in-on-boot.patch
|
||||||
# Fix Raspberry Pi 1 build
|
# Fix Raspberry Pi 1 build
|
||||||
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
Patch9: efi_loader-Provide-icache-flush-stub.patch
|
||||||
# Make SPL work with raw sector offsets on beagle-xm
|
|
||||||
Patch10: omap3-Use-raw-SPL-by-default-for-mmc1.patch
|
|
||||||
# Ensure we mark the device tree as reserved
|
# Ensure we mark the device tree as reserved
|
||||||
Patch11: efi-map-fdt-as-reserved.patch
|
Patch11: efi-map-fdt-as-reserved.patch
|
||||||
|
Patch12: rpi3.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# Arndale board need DTC >= 1.4
|
# Arndale board need DTC >= 1.4
|
||||||
BuildRequires: bc
|
BuildRequires: bc
|
||||||
@ -100,8 +99,8 @@ This package contains documentation for u-boot firmware
|
|||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
|
||||||
%patch11 -p1
|
%patch11 -p1
|
||||||
|
%patch12
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" BOARDCONFIG
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" BOARDCONFIG
|
||||||
|
Loading…
x
Reference in New Issue
Block a user