Accepting request 455547 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/455547 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=84
This commit is contained in:
parent
4a8c51668e
commit
192ab05c43
@ -1,4 +1,4 @@
|
|||||||
From cc62469ed0d694373f4da3e51a316cf36d332bba Mon Sep 17 00:00:00 2001
|
From b5facb51166914779628971afd309996b1900ccd Mon Sep 17 00:00:00 2001
|
||||||
From: Alexander Graf <agraf@suse.de>
|
From: Alexander Graf <agraf@suse.de>
|
||||||
Date: Wed, 13 Apr 2016 13:44:29 +0200
|
Date: Wed, 13 Apr 2016 13:44:29 +0200
|
||||||
Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2
|
Subject: [PATCH] XXX openSUSE XXX: Load dtb from partition 2
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
From 11cfefa3187d947432bd2ba98b328a0e83cf102d Mon Sep 17 00:00:00 2001
|
From 6f767d5e668cb854662317401debe9e812ac348d Mon Sep 17 00:00:00 2001
|
||||||
From: Alexander Graf <agraf@suse.de>
|
From: Alexander Graf <agraf@suse.de>
|
||||||
Date: Mon, 2 May 2016 23:25:07 +0200
|
Date: Mon, 2 May 2016 23:25:07 +0200
|
||||||
Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1""
|
Subject: [PATCH] Revert "Revert "omap3: Use raw SPL by default for mmc1""
|
||||||
|
|
||||||
This reverts commit 7fa75d0ac5502db813d109c1df7bd0da34688685.
|
This reverts commit 7fa75d0ac5502db813d109c1df7bd0da34688685.
|
||||||
---
|
---
|
||||||
arch/arm/cpu/armv7/omap-common/boot-common.c | 2 --
|
arch/arm/mach-omap2/boot-common.c | 2 --
|
||||||
1 file changed, 2 deletions(-)
|
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
|
diff --git a/arch/arm/mach-omap2/boot-common.c b/arch/arm/mach-omap2/boot-common.c
|
||||||
index 385310b..c7125e9 100644
|
index 385310b..c7125e9 100644
|
||||||
--- a/arch/arm/cpu/armv7/omap-common/boot-common.c
|
--- a/arch/arm/mach-omap2/boot-common.c
|
||||||
+++ b/arch/arm/cpu/armv7/omap-common/boot-common.c
|
+++ b/arch/arm/mach-omap2/boot-common.c
|
||||||
@@ -116,8 +116,6 @@ void save_omap_boot_params(void)
|
@@ -116,8 +116,6 @@ void save_omap_boot_params(void)
|
||||||
(boot_device <= MMC_BOOT_DEVICES_END)) {
|
(boot_device <= MMC_BOOT_DEVICES_END)) {
|
||||||
switch (boot_device) {
|
switch (boot_device) {
|
@ -1,81 +0,0 @@
|
|||||||
From bab6735b3a6a9194f5f805fe633c9cfc2d5b58db Mon Sep 17 00:00:00 2001
|
|
||||||
From: Alexander Graf <agraf@suse.de>
|
|
||||||
Date: Tue, 1 Mar 2016 10:05:10 +0100
|
|
||||||
Subject: [PATCH] XXX openSUSE XXX: omap3: Move to distro bootcmd
|
|
||||||
|
|
||||||
This is a half-assed conversion of the beagle3 default bootcmd
|
|
||||||
to the distro framework. Only MMC boot works for now, but it gets
|
|
||||||
our openSUSE images working.
|
|
||||||
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
---
|
|
||||||
include/configs/omap3_beagle.h | 45 ++++++++++++------------------------------
|
|
||||||
1 file changed, 13 insertions(+), 32 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
|
|
||||||
index 8a69a5f..e58088f 100644
|
|
||||||
--- a/include/configs/omap3_beagle.h
|
|
||||||
+++ b/include/configs/omap3_beagle.h
|
|
||||||
@@ -106,9 +106,12 @@
|
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
||||||
"loadaddr=0x80200000\0" \
|
|
||||||
+ "kernel_addr_r=0x80200000\0" \
|
|
||||||
"rdaddr=0x81000000\0" \
|
|
||||||
+ "initrd_addr_r=0x81000000\0" \
|
|
||||||
"fdt_high=0xffffffff\0" \
|
|
||||||
- "fdtaddr=0x80f80000\0" \
|
|
||||||
+ "fdtaddr=0x90f80000\0" \
|
|
||||||
+ "fdt_addr_r=0x90f80000\0" \
|
|
||||||
"usbtty=cdc_acm\0" \
|
|
||||||
"bootfile=uImage\0" \
|
|
||||||
"ramdisk=ramdisk.gz\0" \
|
|
||||||
@@ -203,39 +206,17 @@
|
|
||||||
"userbutton=if gpio input 173; then run userbutton_xm; " \
|
|
||||||
"else run userbutton_nonxm; fi;\0" \
|
|
||||||
"userbutton_xm=gpio input 4;\0" \
|
|
||||||
- "userbutton_nonxm=gpio input 7;\0"
|
|
||||||
-/* "run userbutton" will return 1 (false) if pressed and 0 (true) if not */
|
|
||||||
+ "userbutton_nonxm=gpio input 7;\0" \
|
|
||||||
+ BOOTENV
|
|
||||||
+
|
|
||||||
+#define BOOT_TARGET_DEVICES(func) \
|
|
||||||
+ func(MMC, mmc, 0)
|
|
||||||
+
|
|
||||||
#define CONFIG_BOOTCOMMAND \
|
|
||||||
"run findfdt; " \
|
|
||||||
- "mmc dev ${mmcdev}; if mmc rescan; then " \
|
|
||||||
- "if run userbutton; then " \
|
|
||||||
- "setenv bootenv uEnv.txt;" \
|
|
||||||
- "else " \
|
|
||||||
- "setenv bootenv user.txt;" \
|
|
||||||
- "fi;" \
|
|
||||||
- "echo SD/MMC found on device ${mmcdev};" \
|
|
||||||
- "if run loadbootenv; then " \
|
|
||||||
- "echo Loaded environment from ${bootenv};" \
|
|
||||||
- "run importbootenv;" \
|
|
||||||
- "fi;" \
|
|
||||||
- "if test -n $uenvcmd; then " \
|
|
||||||
- "echo Running uenvcmd ...;" \
|
|
||||||
- "run uenvcmd;" \
|
|
||||||
- "fi;" \
|
|
||||||
- "if run loadbootscript; then " \
|
|
||||||
- "run bootscript; " \
|
|
||||||
- "else " \
|
|
||||||
- "if run loadimage; then " \
|
|
||||||
- "run mmcboot;" \
|
|
||||||
- "fi;" \
|
|
||||||
- "fi; " \
|
|
||||||
- "fi;" \
|
|
||||||
- "run nandboot;" \
|
|
||||||
- "setenv bootfile zImage;" \
|
|
||||||
- "if run loadimage; then " \
|
|
||||||
- "run loadfdt;" \
|
|
||||||
- "run mmcbootz; " \
|
|
||||||
- "fi; " \
|
|
||||||
+ "run distro_bootcmd"
|
|
||||||
+
|
|
||||||
+#include <config_distro_bootcmd.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* OMAP3 has 12 GP timers, they can be driven by the system clock
|
|
@ -1,113 +0,0 @@
|
|||||||
From ea826395805cfae7c3bb1ac58bffae1bc5c0801e Mon Sep 17 00:00:00 2001
|
|
||||||
From: Alexander Graf <agraf@suse.de>
|
|
||||||
Date: Tue, 7 Jun 2016 00:57:04 +0200
|
|
||||||
Subject: [PATCH] ARM: bcm283x: Implement EFI RTS reset_system
|
|
||||||
|
|
||||||
The rpi has a pretty simple way of resetting the whole system. All it takes
|
|
||||||
is to poke a few registers at a well defined location in MMIO space.
|
|
||||||
|
|
||||||
This patch adds support for the EFI loader implementation to allow an OS to
|
|
||||||
reset and power off the system when we're outside of boot time.
|
|
||||||
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
v2 -> v3:
|
|
||||||
|
|
||||||
- Use new runtime markers
|
|
||||||
---
|
|
||||||
arch/arm/mach-bcm283x/include/mach/wdog.h | 2 +-
|
|
||||||
arch/arm/mach-bcm283x/reset.c | 59 +++++++++++++++++++++++++++----
|
|
||||||
2 files changed, 54 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/arch/arm/mach-bcm283x/include/mach/wdog.h b/arch/arm/mach-bcm283x/include/mach/wdog.h
|
|
||||||
index 7741d7b..b4caca1 100644
|
|
||||||
--- a/arch/arm/mach-bcm283x/include/mach/wdog.h
|
|
||||||
+++ b/arch/arm/mach-bcm283x/include/mach/wdog.h
|
|
||||||
@@ -16,7 +16,7 @@
|
|
||||||
struct bcm2835_wdog_regs {
|
|
||||||
u32 unknown0[7];
|
|
||||||
u32 rstc;
|
|
||||||
- u32 unknown1;
|
|
||||||
+ u32 rsts;
|
|
||||||
u32 wdog;
|
|
||||||
};
|
|
||||||
|
|
||||||
diff --git a/arch/arm/mach-bcm283x/reset.c b/arch/arm/mach-bcm283x/reset.c
|
|
||||||
index 72cdc31..685815c 100644
|
|
||||||
--- a/arch/arm/mach-bcm283x/reset.c
|
|
||||||
+++ b/arch/arm/mach-bcm283x/reset.c
|
|
||||||
@@ -10,19 +10,66 @@
|
|
||||||
#include <common.h>
|
|
||||||
#include <asm/io.h>
|
|
||||||
#include <asm/arch/wdog.h>
|
|
||||||
+#include <efi_loader.h>
|
|
||||||
|
|
||||||
#define RESET_TIMEOUT 10
|
|
||||||
|
|
||||||
-void reset_cpu(ulong addr)
|
|
||||||
+/*
|
|
||||||
+ * The Raspberry Pi firmware uses the RSTS register to know which partiton
|
|
||||||
+ * to boot from. The partiton value is spread into bits 0, 2, 4, 6, 8, 10.
|
|
||||||
+ * Partiton 63 is a special partition used by the firmware to indicate halt.
|
|
||||||
+ */
|
|
||||||
+#define BCM2835_WDOG_RSTS_RASPBERRYPI_HALT 0x555
|
|
||||||
+
|
|
||||||
+__efi_runtime_data struct bcm2835_wdog_regs *wdog_regs =
|
|
||||||
+ (struct bcm2835_wdog_regs *)BCM2835_WDOG_PHYSADDR;
|
|
||||||
+
|
|
||||||
+void __efi_runtime reset_cpu(ulong addr)
|
|
||||||
{
|
|
||||||
- struct bcm2835_wdog_regs *regs =
|
|
||||||
- (struct bcm2835_wdog_regs *)BCM2835_WDOG_PHYSADDR;
|
|
||||||
uint32_t rstc;
|
|
||||||
|
|
||||||
- rstc = readl(®s->rstc);
|
|
||||||
+ rstc = readl(&wdog_regs->rstc);
|
|
||||||
rstc &= ~BCM2835_WDOG_RSTC_WRCFG_MASK;
|
|
||||||
rstc |= BCM2835_WDOG_RSTC_WRCFG_FULL_RESET;
|
|
||||||
|
|
||||||
- writel(BCM2835_WDOG_PASSWORD | RESET_TIMEOUT, ®s->wdog);
|
|
||||||
- writel(BCM2835_WDOG_PASSWORD | rstc, ®s->rstc);
|
|
||||||
+ writel(BCM2835_WDOG_PASSWORD | RESET_TIMEOUT, &wdog_regs->wdog);
|
|
||||||
+ writel(BCM2835_WDOG_PASSWORD | rstc, &wdog_regs->rstc);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+#ifdef CONFIG_EFI_LOADER
|
|
||||||
+
|
|
||||||
+void __efi_runtime EFIAPI efi_reset_system(
|
|
||||||
+ enum efi_reset_type reset_type,
|
|
||||||
+ efi_status_t reset_status,
|
|
||||||
+ unsigned long data_size, void *reset_data)
|
|
||||||
+{
|
|
||||||
+ u32 val;
|
|
||||||
+
|
|
||||||
+ switch (reset_type) {
|
|
||||||
+ case EFI_RESET_COLD:
|
|
||||||
+ case EFI_RESET_WARM:
|
|
||||||
+ reset_cpu(0);
|
|
||||||
+ break;
|
|
||||||
+ case EFI_RESET_SHUTDOWN:
|
|
||||||
+ /*
|
|
||||||
+ * We set the watchdog hard reset bit here to distinguish this reset
|
|
||||||
+ * from the normal (full) reset. bootcode.bin will not reboot after a
|
|
||||||
+ * hard reset.
|
|
||||||
+ */
|
|
||||||
+ val = readl(&wdog_regs->rsts);
|
|
||||||
+ val |= BCM2835_WDOG_PASSWORD;
|
|
||||||
+ val |= BCM2835_WDOG_RSTS_RASPBERRYPI_HALT;
|
|
||||||
+ writel(val, &wdog_regs->rsts);
|
|
||||||
+ reset_cpu(0);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ while (1) { }
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+void efi_reset_system_init(void)
|
|
||||||
+{
|
|
||||||
+ efi_add_runtime_mmio(&wdog_regs, sizeof(*wdog_regs));
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+#endif
|
|
@ -1,52 +0,0 @@
|
|||||||
From adb5eae11aafbbd81d85f5cf1f0d84a2d85f8c82 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Alexander Graf <agraf@suse.de>
|
|
||||||
Date: Mon, 6 Jun 2016 18:23:37 +0200
|
|
||||||
Subject: [PATCH] bcm2835 video: Map frame buffer as 32bpp
|
|
||||||
|
|
||||||
To enable working efifb support, let's map the frame buffer as 32bpp
|
|
||||||
instead of 16bpp.
|
|
||||||
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
---
|
|
||||||
drivers/video/bcm2835.c | 6 +++---
|
|
||||||
include/configs/rpi.h | 2 +-
|
|
||||||
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/video/bcm2835.c b/drivers/video/bcm2835.c
|
|
||||||
index cd605e6..cc6454f 100644
|
|
||||||
--- a/drivers/video/bcm2835.c
|
|
||||||
+++ b/drivers/video/bcm2835.c
|
|
||||||
@@ -71,9 +71,9 @@ void lcd_ctrl_init(void *lcdbase)
|
|
||||||
msg_setup->virtual_w_h.body.req.width = w;
|
|
||||||
msg_setup->virtual_w_h.body.req.height = h;
|
|
||||||
BCM2835_MBOX_INIT_TAG(&msg_setup->depth, SET_DEPTH);
|
|
||||||
- msg_setup->depth.body.req.bpp = 16;
|
|
||||||
+ msg_setup->depth.body.req.bpp = 32;
|
|
||||||
BCM2835_MBOX_INIT_TAG(&msg_setup->pixel_order, SET_PIXEL_ORDER);
|
|
||||||
- msg_setup->pixel_order.body.req.order = BCM2835_MBOX_PIXEL_ORDER_BGR;
|
|
||||||
+ msg_setup->pixel_order.body.req.order = BCM2835_MBOX_PIXEL_ORDER_RGB;
|
|
||||||
BCM2835_MBOX_INIT_TAG(&msg_setup->alpha_mode, SET_ALPHA_MODE);
|
|
||||||
msg_setup->alpha_mode.body.req.alpha = BCM2835_MBOX_ALPHA_MODE_IGNORED;
|
|
||||||
BCM2835_MBOX_INIT_TAG(&msg_setup->virtual_offset, SET_VIRTUAL_OFFSET);
|
|
||||||
@@ -103,7 +103,7 @@ void lcd_ctrl_init(void *lcdbase)
|
|
||||||
|
|
||||||
panel_info.vl_col = w;
|
|
||||||
panel_info.vl_row = h;
|
|
||||||
- panel_info.vl_bpix = LCD_COLOR16;
|
|
||||||
+ panel_info.vl_bpix = LCD_COLOR32;
|
|
||||||
|
|
||||||
gd->fb_base = bus_to_phys(
|
|
||||||
msg_setup->allocate_buffer.body.resp.fb_address);
|
|
||||||
diff --git a/include/configs/rpi.h b/include/configs/rpi.h
|
|
||||||
index 45c8234..19e0212 100644
|
|
||||||
--- a/include/configs/rpi.h
|
|
||||||
+++ b/include/configs/rpi.h
|
|
||||||
@@ -72,7 +72,7 @@
|
|
||||||
#define CONFIG_BCM2835_GPIO
|
|
||||||
/* LCD */
|
|
||||||
#define CONFIG_LCD_DT_SIMPLEFB
|
|
||||||
-#define LCD_BPP LCD_COLOR16
|
|
||||||
+#define LCD_BPP LCD_COLOR32
|
|
||||||
/*
|
|
||||||
* Prevent allocation of RAM for FB; the real FB address is queried
|
|
||||||
* dynamically from the VideoCore co-processor, and comes from RAM
|
|
@ -1,36 +0,0 @@
|
|||||||
From ae0952b5b992edf32cd9bb837257e019aca1d67d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Alexander Graf <agraf@suse.de>
|
|
||||||
Date: Mon, 6 Jun 2016 23:55:33 +0200
|
|
||||||
Subject: [PATCH] bcm2835: Reserve the spin table in efi memory map
|
|
||||||
|
|
||||||
Firmware provides a spin table on the raspberry pi. This table shouldn't
|
|
||||||
get overwritten by payloads, so we need to mark it as reserved.
|
|
||||||
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
---
|
|
||||||
board/raspberrypi/rpi/rpi.c | 6 ++++++
|
|
||||||
1 file changed, 6 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c
|
|
||||||
index 6245b36..7f057e1 100644
|
|
||||||
--- a/board/raspberrypi/rpi/rpi.c
|
|
||||||
+++ b/board/raspberrypi/rpi/rpi.c
|
|
||||||
@@ -8,6 +8,7 @@
|
|
||||||
#include <inttypes.h>
|
|
||||||
#include <config.h>
|
|
||||||
#include <dm.h>
|
|
||||||
+#include <efi_loader.h>
|
|
||||||
#include <fdt_support.h>
|
|
||||||
#include <fdt_simplefb.h>
|
|
||||||
#include <lcd.h>
|
|
||||||
@@ -514,5 +515,10 @@ int ft_board_setup(void *blob, bd_t *bd)
|
|
||||||
*/
|
|
||||||
lcd_dt_simplefb_add_node(blob);
|
|
||||||
|
|
||||||
+#ifdef CONFIG_EFI_LOADER
|
|
||||||
+ /* Reserve the spin table */
|
|
||||||
+ efi_add_memory_map(0, 1, EFI_RESERVED_MEMORY_TYPE, 0);
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
From ce7b106febc92c8f98b770af962df1fd2a608fae Mon Sep 17 00:00:00 2001
|
|
||||||
From: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
||||||
Date: Thu, 20 Oct 2016 00:23:43 +0900
|
|
||||||
Subject: [PATCH] efi_loader: fix depends on line of EFI_LOADER
|
|
||||||
|
|
||||||
This line is shown as
|
|
||||||
|
|
||||||
depends on (ARM64 ||\302\240ARM) && OF_LIBFDT
|
|
||||||
|
|
||||||
on my Emacs. Use ASCII characters only.
|
|
||||||
|
|
||||||
Assuming it is (ARM64 || ARM), remove the redundancy.
|
|
||||||
Unlike Linux, CONFIG_ARM includes CONFIG_ARM64 in U-Boot.
|
|
||||||
|
|
||||||
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
---
|
|
||||||
lib/efi_loader/Kconfig | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig
|
|
||||||
index 37a0dd6..7d4106e 100644
|
|
||||||
--- a/lib/efi_loader/Kconfig
|
|
||||||
+++ b/lib/efi_loader/Kconfig
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
config EFI_LOADER
|
|
||||||
bool "Support running EFI Applications in U-Boot"
|
|
||||||
- depends on (ARM64 || ARM) && OF_LIBFDT
|
|
||||||
+ depends on ARM && OF_LIBFDT
|
|
||||||
default y
|
|
||||||
help
|
|
||||||
Select this option if you want to run EFI applications (like grub2)
|
|
@ -1,91 +0,0 @@
|
|||||||
From cd3fca2b8567f236b38f94a091e77f9efc3a879b Mon Sep 17 00:00:00 2001
|
|
||||||
From: Oleksandr Tymoshenko <gonzo@bluezbox.com>
|
|
||||||
Date: Mon, 24 Oct 2016 10:47:01 -0700
|
|
||||||
Subject: [PATCH] efi: Use device device path type Messaging for network
|
|
||||||
interface node
|
|
||||||
|
|
||||||
When adding network interface node use Messaging device path with
|
|
||||||
subtype MAC Address and device's MAC address as a value instead
|
|
||||||
of Media Device path type with subtype File Path and path "Net"
|
|
||||||
|
|
||||||
Signed-off-by: Oleksandr Tymoshenko <gonzo@bluezbox.com>
|
|
||||||
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
||||||
---
|
|
||||||
include/efi_api.h | 13 +++++++++++++
|
|
||||||
lib/efi_loader/efi_net.c | 17 +++++++++--------
|
|
||||||
2 files changed, 22 insertions(+), 8 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/include/efi_api.h b/include/efi_api.h
|
|
||||||
index bdb600e..5c3836a 100644
|
|
||||||
--- a/include/efi_api.h
|
|
||||||
+++ b/include/efi_api.h
|
|
||||||
@@ -268,6 +268,19 @@ struct efi_device_path {
|
|
||||||
u16 length;
|
|
||||||
};
|
|
||||||
|
|
||||||
+struct efi_mac_addr {
|
|
||||||
+ u8 addr[32];
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+#define DEVICE_PATH_TYPE_MESSAGING_DEVICE 0x03
|
|
||||||
+# define DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR 0x0b
|
|
||||||
+
|
|
||||||
+struct efi_device_path_mac_addr {
|
|
||||||
+ struct efi_device_path dp;
|
|
||||||
+ struct efi_mac_addr mac;
|
|
||||||
+ u8 if_type;
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
#define DEVICE_PATH_TYPE_MEDIA_DEVICE 0x04
|
|
||||||
# define DEVICE_PATH_SUB_TYPE_FILE_PATH 0x04
|
|
||||||
|
|
||||||
diff --git a/lib/efi_loader/efi_net.c b/lib/efi_loader/efi_net.c
|
|
||||||
index 3796496..604ac6e 100644
|
|
||||||
--- a/lib/efi_loader/efi_net.c
|
|
||||||
+++ b/lib/efi_loader/efi_net.c
|
|
||||||
@@ -27,7 +27,8 @@ struct efi_net_obj {
|
|
||||||
struct efi_simple_network net;
|
|
||||||
struct efi_simple_network_mode net_mode;
|
|
||||||
/* Device path to the network adapter */
|
|
||||||
- struct efi_device_path_file_path dp[2];
|
|
||||||
+ struct efi_device_path_mac_addr dp_mac;
|
|
||||||
+ struct efi_device_path_file_path dp_end;
|
|
||||||
/* PXE struct to transmit dhcp data */
|
|
||||||
struct efi_pxe pxe;
|
|
||||||
struct efi_pxe_mode pxe_mode;
|
|
||||||
@@ -205,7 +206,7 @@ static efi_status_t EFIAPI efi_net_open_dp(void *handle, efi_guid_t *protocol,
|
|
||||||
struct efi_simple_network *net = handle;
|
|
||||||
struct efi_net_obj *netobj = container_of(net, struct efi_net_obj, net);
|
|
||||||
|
|
||||||
- *protocol_interface = netobj->dp;
|
|
||||||
+ *protocol_interface = &netobj->dp_mac;
|
|
||||||
|
|
||||||
return EFI_SUCCESS;
|
|
||||||
}
|
|
||||||
@@ -236,11 +237,10 @@ void efi_net_set_dhcp_ack(void *pkt, int len)
|
|
||||||
int efi_net_register(void **handle)
|
|
||||||
{
|
|
||||||
struct efi_net_obj *netobj;
|
|
||||||
- struct efi_device_path_file_path dp_net = {
|
|
||||||
- .dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE,
|
|
||||||
- .dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH,
|
|
||||||
+ struct efi_device_path_mac_addr dp_net = {
|
|
||||||
+ .dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE,
|
|
||||||
+ .dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR,
|
|
||||||
.dp.length = sizeof(dp_net),
|
|
||||||
- .str = { 'N', 'e', 't' },
|
|
||||||
};
|
|
||||||
struct efi_device_path_file_path dp_end = {
|
|
||||||
.dp.type = DEVICE_PATH_TYPE_END,
|
|
||||||
@@ -279,8 +279,9 @@ int efi_net_register(void **handle)
|
|
||||||
netobj->net.receive = efi_net_receive;
|
|
||||||
netobj->net.mode = &netobj->net_mode;
|
|
||||||
netobj->net_mode.state = EFI_NETWORK_STARTED;
|
|
||||||
- netobj->dp[0] = dp_net;
|
|
||||||
- netobj->dp[1] = dp_end;
|
|
||||||
+ netobj->dp_mac = dp_net;
|
|
||||||
+ netobj->dp_end = dp_end;
|
|
||||||
+ memcpy(netobj->dp_mac.mac.addr, eth_get_ethaddr(), 6);
|
|
||||||
memcpy(netobj->net_mode.current_address.mac_addr, eth_get_ethaddr(), 6);
|
|
||||||
netobj->net_mode.max_packet_size = PKTSIZE;
|
|
||||||
|
|
@ -18,12 +18,12 @@ armv7_boards="$armv7_boards arndale snow spring odroid odroid-xu3"
|
|||||||
# Calxeda
|
# Calxeda
|
||||||
armv7_boards="$armv7_boards highbank"
|
armv7_boards="$armv7_boards highbank"
|
||||||
# Freescale
|
# Freescale
|
||||||
armv7_boards="$armv7_boards mx53loco mx6cuboxi mx6qsabrelite udoo"
|
armv7_boards="$armv7_boards mx53loco mx6cuboxi mx6qsabrelite udoo udoo_neo"
|
||||||
# Allwinner
|
# Allwinner
|
||||||
armv7_boards="$armv7_boards Bananapi Cubieboard Cubieboard2 Cubietruck Mele_A1000 Merrii_A80_Optimus"
|
armv7_boards="$armv7_boards Bananapi Cubieboard Cubieboard2 Cubietruck Mele_A1000 Merrii_A80_Optimus"
|
||||||
armv7_boards="$armv7_boards A10-OLinuXino-Lime A13-OLinuXino A13-OLinuXinoM"
|
armv7_boards="$armv7_boards A10-OLinuXino-Lime A13-OLinuXino A13-OLinuXinoM"
|
||||||
armv7_boards="$armv7_boards A20-OLinuXino-Lime A20-OLinuXino-Lime2 A20-OLinuXino_MICRO"
|
armv7_boards="$armv7_boards A20-OLinuXino-Lime A20-OLinuXino-Lime2 A20-OLinuXino_MICRO"
|
||||||
armv7_boards="$armv7_boards orangepi_pc Hyundai_A7HD"
|
armv7_boards="$armv7_boards nanopi_neo orangepi_pc Hyundai_A7HD"
|
||||||
# Broadcom
|
# Broadcom
|
||||||
armv7_boards="$armv7_boards rpi_2 rpi_3_32b"
|
armv7_boards="$armv7_boards rpi_2 rpi_3_32b"
|
||||||
# Nvidia
|
# Nvidia
|
||||||
@ -71,7 +71,6 @@ if [ ! "$1" -o ! "$2" -o ! "$3" ]; then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CHANGE_DATE=$(date -d "$(head -n 2 u-boot.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
|
||||||
MVEBU_SPL=0
|
MVEBU_SPL=0
|
||||||
OMAP_SPL=0
|
OMAP_SPL=0
|
||||||
ROCKCHIP_SPL=0
|
ROCKCHIP_SPL=0
|
||||||
@ -80,6 +79,7 @@ ARNDALE_SPL=0
|
|||||||
CUBOXI_SPL=0
|
CUBOXI_SPL=0
|
||||||
ORIGEN_SPL=0
|
ORIGEN_SPL=0
|
||||||
UDOO_SPL=0
|
UDOO_SPL=0
|
||||||
|
IMX6_SPL=0
|
||||||
SOCFPGA_SPL=0
|
SOCFPGA_SPL=0
|
||||||
case "$(echo $BOARDCONFIG | sed -e 's/_defconfig//')" in
|
case "$(echo $BOARDCONFIG | sed -e 's/_defconfig//')" in
|
||||||
mx53loco|mx6qsabrelite|efika*)
|
mx53loco|mx6qsabrelite|efika*)
|
||||||
@ -93,15 +93,7 @@ arndale)
|
|||||||
BINEND=bin
|
BINEND=bin
|
||||||
ARNDALE_SPL=1
|
ARNDALE_SPL=1
|
||||||
;;
|
;;
|
||||||
Bananapi*|Cubieboard*|Cubietruck*|*-OLinuXino*|orangepi_pc)
|
Bananapi*|Cubieboard*|Cubietruck*|Hyundai_A7HD|Mele_A1000|nanopi_neo|*-OLinuXino*|orangepi_pc)
|
||||||
BINEND=img
|
|
||||||
SUNXI_SPL=1
|
|
||||||
;;
|
|
||||||
Mele_A1000)
|
|
||||||
BINEND=img
|
|
||||||
SUNXI_SPL=1
|
|
||||||
;;
|
|
||||||
Hyundai_A7HD)
|
|
||||||
BINEND=img
|
BINEND=img
|
||||||
SUNXI_SPL=1
|
SUNXI_SPL=1
|
||||||
;;
|
;;
|
||||||
@ -111,10 +103,16 @@ snow|spring)
|
|||||||
mx6cuboxi)
|
mx6cuboxi)
|
||||||
BINEND=img
|
BINEND=img
|
||||||
CUBOXI_SPL=1
|
CUBOXI_SPL=1
|
||||||
|
IMX6_SPL=1
|
||||||
;;
|
;;
|
||||||
udoo)
|
udoo)
|
||||||
BINEND=img
|
BINEND=img
|
||||||
UDOO_SPL=1
|
UDOO_SPL=1
|
||||||
|
IMX6_SPL=1
|
||||||
|
;;
|
||||||
|
udoo_neo)
|
||||||
|
BINEND=img
|
||||||
|
IMX6_SPL=1
|
||||||
;;
|
;;
|
||||||
firefly-rk3288)
|
firefly-rk3288)
|
||||||
BINEND=img
|
BINEND=img
|
||||||
@ -138,7 +136,6 @@ sed "s/BOARDCONFIG/$BOARDCONFIG/g
|
|||||||
s/BOARDNAME/$BOARDNAME/g
|
s/BOARDNAME/$BOARDNAME/g
|
||||||
s/ARCH_RESTRICTIONS/$ARCH_RESTRICTIONS/g
|
s/ARCH_RESTRICTIONS/$ARCH_RESTRICTIONS/g
|
||||||
s/BINEND/$BINEND/g
|
s/BINEND/$BINEND/g
|
||||||
s/CHANGE_DATE/$CHANGE_DATE/g
|
|
||||||
s/ORIGEN_SPL/$ORIGEN_SPL/g
|
s/ORIGEN_SPL/$ORIGEN_SPL/g
|
||||||
s/ARNDALE_SPL/$ARNDALE_SPL/g
|
s/ARNDALE_SPL/$ARNDALE_SPL/g
|
||||||
s/MVEBU_SPL/$MVEBU_SPL/g
|
s/MVEBU_SPL/$MVEBU_SPL/g
|
||||||
@ -150,6 +147,7 @@ s/SUNXI_SPL/$SUNXI_SPL/g
|
|||||||
s/TEGRA_SPL/$TEGRA_SPL/g
|
s/TEGRA_SPL/$TEGRA_SPL/g
|
||||||
s/CUBOXI_SPL/$CUBOXI_SPL/g
|
s/CUBOXI_SPL/$CUBOXI_SPL/g
|
||||||
s/UDOO_SPL/$UDOO_SPL/g
|
s/UDOO_SPL/$UDOO_SPL/g
|
||||||
|
s/IMX6_SPL/$IMX6_SPL/g
|
||||||
s/OMAP_SPL/$OMAP_SPL/g" < u-boot.spec.tmp > u-boot-$BOARDNAME.spec
|
s/OMAP_SPL/$OMAP_SPL/g" < u-boot.spec.tmp > u-boot-$BOARDNAME.spec
|
||||||
|
|
||||||
cp u-boot.changes u-boot-$BOARDNAME.changes
|
cp u-boot.changes u-boot-$BOARDNAME.changes
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:45813e6565dcc0436abe6752624324cdbf5f3ac106570d76d32b46ec529bcdc8
|
|
||||||
size 12019669
|
|
3
u-boot-2017.01.tar.bz2
Normal file
3
u-boot-2017.01.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2
|
||||||
|
size 12224884
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-a10-olinuxino-lime
|
# spec file for package u-boot-a10-olinuxino-lime
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-a10-olinuxino-lime
|
Name: u-boot-a10-olinuxino-lime
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the a10-olinuxino-lime platform
|
Summary: The U-Boot firmware for the a10-olinuxino-lime platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-a13-olinuxino
|
# spec file for package u-boot-a13-olinuxino
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-a13-olinuxino
|
Name: u-boot-a13-olinuxino
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the a13-olinuxino platform
|
Summary: The U-Boot firmware for the a13-olinuxino platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-a13-olinuxinom
|
# spec file for package u-boot-a13-olinuxinom
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-a13-olinuxinom
|
Name: u-boot-a13-olinuxinom
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the a13-olinuxinom platform
|
Summary: The U-Boot firmware for the a13-olinuxinom platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-a20-olinuxino-lime
|
# spec file for package u-boot-a20-olinuxino-lime
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxino-lime
|
Name: u-boot-a20-olinuxino-lime
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the a20-olinuxino-lime platform
|
Summary: The U-Boot firmware for the a20-olinuxino-lime platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-a20-olinuxino-lime2
|
# spec file for package u-boot-a20-olinuxino-lime2
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxino-lime2
|
Name: u-boot-a20-olinuxino-lime2
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform
|
Summary: The U-Boot firmware for the a20-olinuxino-lime2 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-a20-olinuxinomicro
|
# spec file for package u-boot-a20-olinuxinomicro
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-a20-olinuxinomicro
|
Name: u-boot-a20-olinuxinomicro
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the a20-olinuxinomicro platform
|
Summary: The U-Boot firmware for the a20-olinuxinomicro platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-am335xboneblack
|
# spec file for package u-boot-am335xboneblack
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-am335xboneblack
|
Name: u-boot-am335xboneblack
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the am335xboneblack platform
|
Summary: The U-Boot firmware for the am335xboneblack platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-am335xevm
|
# spec file for package u-boot-am335xevm
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-am335xevm
|
Name: u-boot-am335xevm
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the am335xevm platform
|
Summary: The U-Boot firmware for the am335xevm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-am57xxevm
|
# spec file for package u-boot-am57xxevm
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-am57xxevm
|
Name: u-boot-am57xxevm
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the am57xxevm platform
|
Summary: The U-Boot firmware for the am57xxevm platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-am57xxevmnodt
|
# spec file for package u-boot-am57xxevmnodt
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-am57xxevmnodt
|
Name: u-boot-am57xxevmnodt
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the am57xxevmnodt platform
|
Summary: The U-Boot firmware for the am57xxevmnodt platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-arndale
|
# spec file for package u-boot-arndale
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-arndale
|
Name: u-boot-arndale
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the arndale platform
|
Summary: The U-Boot firmware for the arndale platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" arndale_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" arndale_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-bananapi
|
# spec file for package u-boot-bananapi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-bananapi
|
Name: u-boot-bananapi
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the bananapi platform
|
Summary: The U-Boot firmware for the bananapi platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Bananapi_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-clearfog
|
# spec file for package u-boot-clearfog
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-clearfog
|
Name: u-boot-clearfog
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the clearfog platform
|
Summary: The U-Boot firmware for the clearfog platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" clearfog_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" clearfog_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-colibrit20
|
# spec file for package u-boot-colibrit20
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-colibrit20
|
Name: u-boot-colibrit20
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the colibrit20 platform
|
Summary: The U-Boot firmware for the colibrit20 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-cubieboard
|
# spec file for package u-boot-cubieboard
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-cubieboard
|
Name: u-boot-cubieboard
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the cubieboard platform
|
Summary: The U-Boot firmware for the cubieboard platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-cubieboard2
|
# spec file for package u-boot-cubieboard2
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-cubieboard2
|
Name: u-boot-cubieboard2
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the cubieboard2 platform
|
Summary: The U-Boot firmware for the cubieboard2 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubieboard2_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-cubietruck
|
# spec file for package u-boot-cubietruck
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-cubietruck
|
Name: u-boot-cubietruck
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the cubietruck platform
|
Summary: The U-Boot firmware for the cubietruck platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" Cubietruck_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-dragonboard410c
|
# spec file for package u-boot-dragonboard410c
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-dragonboard410c
|
Name: u-boot-dragonboard410c
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the dragonboard410c platform
|
Summary: The U-Boot firmware for the dragonboard410c platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" dragonboard410c_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" dragonboard410c_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-firefly-rk3288
|
# spec file for package u-boot-firefly-rk3288
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-firefly-rk3288
|
Name: u-boot-firefly-rk3288
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the firefly-rk3288 platform
|
Summary: The U-Boot firmware for the firefly-rk3288 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-highbank
|
# spec file for package u-boot-highbank
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-highbank
|
Name: u-boot-highbank
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the highbank platform
|
Summary: The U-Boot firmware for the highbank platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" highbank_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" highbank_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-hikey
|
# spec file for package u-boot-hikey
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-hikey
|
Name: u-boot-hikey
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the hikey platform
|
Summary: The U-Boot firmware for the hikey platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" hikey_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" hikey_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-hyundaia7hd
|
# spec file for package u-boot-hyundaia7hd
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-hyundaia7hd
|
Name: u-boot-hyundaia7hd
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the hyundaia7hd platform
|
Summary: The U-Boot firmware for the hyundaia7hd platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-jetson-tk1
|
# spec file for package u-boot-jetson-tk1
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-jetson-tk1
|
Name: u-boot-jetson-tk1
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the jetson-tk1 platform
|
Summary: The U-Boot firmware for the jetson-tk1 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-melea1000
|
# spec file for package u-boot-melea1000
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-melea1000
|
Name: u-boot-melea1000
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the melea1000 platform
|
Summary: The U-Boot firmware for the melea1000 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-merriia80optimus
|
# spec file for package u-boot-merriia80optimus
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-merriia80optimus
|
Name: u-boot-merriia80optimus
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the merriia80optimus platform
|
Summary: The U-Boot firmware for the merriia80optimus platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-mx53loco
|
# spec file for package u-boot-mx53loco
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-mx53loco
|
Name: u-boot-mx53loco
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the mx53loco platform
|
Summary: The U-Boot firmware for the mx53loco platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx53loco_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-mx6cuboxi
|
# spec file for package u-boot-mx6cuboxi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 1
|
%define cuboxi_spl 1
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 1
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-mx6cuboxi
|
Name: u-boot-mx6cuboxi
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the mx6cuboxi platform
|
Summary: The U-Boot firmware for the mx6cuboxi platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6cuboxi_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-mx6qsabrelite
|
# spec file for package u-boot-mx6qsabrelite
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-mx6qsabrelite
|
Name: u-boot-mx6qsabrelite
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the mx6qsabrelite platform
|
Summary: The U-Boot firmware for the mx6qsabrelite platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" mx6qsabrelite_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
1492
u-boot-nanopineo.changes
Normal file
1492
u-boot-nanopineo.changes
Normal file
File diff suppressed because it is too large
Load Diff
202
u-boot-nanopineo.spec
Normal file
202
u-boot-nanopineo.spec
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
#
|
||||||
|
# spec file for package u-boot-nanopineo
|
||||||
|
#
|
||||||
|
# Copyright (c) 2017 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 mvebu_spl 0
|
||||||
|
%define x_loader 0
|
||||||
|
%define rockchip_spl 0
|
||||||
|
%define sunxi_spl 1
|
||||||
|
%define arndale_spl 0
|
||||||
|
%define cuboxi_spl 0
|
||||||
|
%define origen_spl 0
|
||||||
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
|
%define socfpga_spl 0
|
||||||
|
|
||||||
|
# archive_version differs from version for RC version only
|
||||||
|
%define archive_version 2017.01
|
||||||
|
|
||||||
|
Name: u-boot-nanopineo
|
||||||
|
Version: 2017.01
|
||||||
|
Release: 0
|
||||||
|
Summary: The U-Boot firmware for the nanopineo 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
|
||||||
|
Source3: update_git.sh
|
||||||
|
Source300: u-boot-rpmlintrc
|
||||||
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
# Arndale board need DTC >= 1.4
|
||||||
|
BuildRequires: bc
|
||||||
|
BuildRequires: dtc >= 1.4.0
|
||||||
|
# u-boot-firefly-rk3288 needs python to build
|
||||||
|
BuildRequires: python
|
||||||
|
%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" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3"
|
||||||
|
# Owns /boot/vc directory
|
||||||
|
BuildRequires: raspberrypi-firmware
|
||||||
|
# For mountpoint
|
||||||
|
Requires(post): util-linux
|
||||||
|
%endif
|
||||||
|
Provides: u-boot-loader
|
||||||
|
Conflicts: otherproviders(u-boot-loader)
|
||||||
|
%if %x_loader == 1
|
||||||
|
Obsoletes: x-loader-nanopineo
|
||||||
|
Provides: x-loader-nanopineo
|
||||||
|
%endif
|
||||||
|
ExclusiveArch: armv7l armv7hl
|
||||||
|
|
||||||
|
%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 nanopineo 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}
|
||||||
|
%patch0001 -p1
|
||||||
|
%patch0002 -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" nanopi_neo_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
|
||||||
|
%if %rockchip_spl == 1
|
||||||
|
for t in ; do
|
||||||
|
./tools/mkimage -n -d spl/u-boot-spl.bin -T $t u-boot-spl.$t
|
||||||
|
done
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
|
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" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3"
|
||||||
|
%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 spl/u-boot-spl; 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.img %{buildroot}%{uboot_dir}/u-boot.img
|
||||||
|
elif [ -f u-boot-dtb.img ]; then
|
||||||
|
install -D -m 0644 u-boot-dtb.img %{buildroot}%{uboot_dir}/u-boot.img
|
||||||
|
else
|
||||||
|
install -D -m 0644 u-boot.img %{buildroot}%{uboot_dir}/u-boot.img
|
||||||
|
fi
|
||||||
|
%if "%{name}" == "u-boot-qemu-ppce500"
|
||||||
|
mv %{buildroot}%{uboot_dir}/u-boot.img %{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 %mvebu_spl == 1
|
||||||
|
install -D -m 0755 u-boot-spl.kwb %{buildroot}%{uboot_dir}/u-boot-spl.kwb
|
||||||
|
%endif
|
||||||
|
%if %rockchip_spl == 1
|
||||||
|
install -D -m 0644 spl/u-boot-spl.bin %{buildroot}%{uboot_dir}/u-boot-spl.bin
|
||||||
|
for t in ; do
|
||||||
|
install -D -m 0644 u-boot-spl.$t %{buildroot}%{uboot_dir}/u-boot-spl.$t
|
||||||
|
done
|
||||||
|
%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
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
|
%if %socfpga_spl == 1
|
||||||
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if "%{name}" == "u-boot-rpi" || "%{name}" == "u-boot-rpi2" || "%{name}" == "u-boot-rpi332b" || "%{name}" == "u-boot-rpi3"
|
||||||
|
%post
|
||||||
|
# On the Raspberry Pi we chain-load u-boot.bin from bootcode.bin via config.txt.
|
||||||
|
# It needs to be on the first FAT partition, wherever we mounted it.
|
||||||
|
# a) Unmounted, then do nothing.
|
||||||
|
# b) Mounted as /boot/vc, then they're in the right place already.
|
||||||
|
# c) Mounted as /boot/efi, with /boot/vc as symlink, then nothing to be done.
|
||||||
|
# d) Mounted as /boot/efi, with /boot/vc a directory, then copy files over.
|
||||||
|
if mountpoint -q /boot/efi; then
|
||||||
|
[[ "$(readlink -f /boot/efi)" -ef "$(readlink -f %{uboot_dir})" ]] || cp %{uboot_dir}/u-boot.img /boot/efi/
|
||||||
|
fi
|
||||||
|
%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,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-odroid-c2
|
# spec file for package u-boot-odroid-c2
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-odroid-c2
|
Name: u-boot-odroid-c2
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the odroid-c2 platform
|
Summary: The U-Boot firmware for the odroid-c2 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-c2_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid-c2_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-odroid-xu3
|
# spec file for package u-boot-odroid-xu3
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-odroid-xu3
|
Name: u-boot-odroid-xu3
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the odroid-xu3 platform
|
Summary: The U-Boot firmware for the odroid-xu3 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-odroid
|
# spec file for package u-boot-odroid
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-odroid
|
Name: u-boot-odroid
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the odroid platform
|
Summary: The U-Boot firmware for the odroid platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" odroid_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-omap3beagle
|
# spec file for package u-boot-omap3beagle
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-omap3beagle
|
Name: u-boot-omap3beagle
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the omap3beagle platform
|
Summary: The U-Boot firmware for the omap3beagle platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-omap4panda
|
# spec file for package u-boot-omap4panda
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-omap4panda
|
Name: u-boot-omap4panda
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the omap4panda platform
|
Summary: The U-Boot firmware for the omap4panda platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-orangepipc
|
# spec file for package u-boot-orangepipc
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-orangepipc
|
Name: u-boot-orangepipc
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the orangepipc platform
|
Summary: The U-Boot firmware for the orangepipc platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-p2371-2180
|
# spec file for package u-boot-p2371-2180
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-p2371-2180
|
Name: u-boot-p2371-2180
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the p2371-2180 platform
|
Summary: The U-Boot firmware for the p2371-2180 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-paz00
|
# spec file for package u-boot-paz00
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-paz00
|
Name: u-boot-paz00
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the paz00 platform
|
Summary: The U-Boot firmware for the paz00 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" paz00_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" paz00_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-pcm051rev3
|
# spec file for package u-boot-pcm051rev3
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-pcm051rev3
|
Name: u-boot-pcm051rev3
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the pcm051rev3 platform
|
Summary: The U-Boot firmware for the pcm051rev3 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-pine64plus
|
# spec file for package u-boot-pine64plus
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-pine64plus
|
Name: u-boot-pine64plus
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the pine64plus platform
|
Summary: The U-Boot firmware for the pine64plus platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pine64_plus_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" pine64_plus_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-qemu-ppce500
|
# spec file for package u-boot-qemu-ppce500
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-qemu-ppce500
|
Name: u-boot-qemu-ppce500
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the qemu-ppce500 platform
|
Summary: The U-Boot firmware for the qemu-ppce500 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-rpi
|
# spec file for package u-boot-rpi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-rpi
|
Name: u-boot-rpi
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi platform
|
Summary: The U-Boot firmware for the rpi platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-rpi2
|
# spec file for package u-boot-rpi2
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-rpi2
|
Name: u-boot-rpi2
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi2 platform
|
Summary: The U-Boot firmware for the rpi2 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
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
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-rpi3
|
# spec file for package u-boot-rpi3
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-rpi3
|
Name: u-boot-rpi3
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi3 platform
|
Summary: The U-Boot firmware for the rpi3 platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_defconfig
|
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
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package u-boot-rpi332b
|
# spec file for package u-boot-rpi332b
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
#
|
#
|
||||||
@ -26,13 +26,14 @@
|
|||||||
%define cuboxi_spl 0
|
%define cuboxi_spl 0
|
||||||
%define origen_spl 0
|
%define origen_spl 0
|
||||||
%define udoo_spl 0
|
%define udoo_spl 0
|
||||||
|
%define imx6_spl 0
|
||||||
%define socfpga_spl 0
|
%define socfpga_spl 0
|
||||||
|
|
||||||
# archive_version differs from version for RC version only
|
# archive_version differs from version for RC version only
|
||||||
%define archive_version 2016.11
|
%define archive_version 2017.01
|
||||||
|
|
||||||
Name: u-boot-rpi332b
|
Name: u-boot-rpi332b
|
||||||
Version: 2016.11
|
Version: 2017.01
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The U-Boot firmware for the rpi332b platform
|
Summary: The U-Boot firmware for the rpi332b platform
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -43,13 +44,7 @@ Source2: arndale-bl1.img
|
|||||||
Source3: update_git.sh
|
Source3: update_git.sh
|
||||||
Source300: u-boot-rpmlintrc
|
Source300: u-boot-rpmlintrc
|
||||||
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
Patch0001: 0001-XXX-openSUSE-XXX-Load-dtb-from-part.patch
|
||||||
Patch0002: 0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
Patch0002: 0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
Patch0003: 0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
|
||||||
Patch0004: 0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
|
||||||
Patch0005: 0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
|
||||||
Patch0006: 0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
|
||||||
Patch0007: 0007-efi_loader-fix-depends-on-line-of-E.patch
|
|
||||||
Patch0008: 0008-efi-Use-device-device-path-type-Mes.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
|
||||||
@ -91,15 +86,9 @@ This package contains documentation for U-Boot firmware.
|
|||||||
%setup -q -n u-boot-%{archive_version}
|
%setup -q -n u-boot-%{archive_version}
|
||||||
%patch0001 -p1
|
%patch0001 -p1
|
||||||
%patch0002 -p1
|
%patch0002 -p1
|
||||||
%patch0003 -p1
|
|
||||||
%patch0004 -p1
|
|
||||||
%patch0005 -p1
|
|
||||||
%patch0006 -p1
|
|
||||||
%patch0007 -p1
|
|
||||||
%patch0008 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_32b_defconfig
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" rpi_3_32b_defconfig
|
||||||
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
make %{?jobs:-j %jobs} CROSS_COMPILE= CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
|
||||||
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
%if "%{name}" == "u-boot-snow" || "%{name}" == "u-boot-spring"
|
||||||
@ -114,7 +103,7 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1482180630
|
export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/%{name}.changes | tail -n 1 | cut -d- -f1 )" +%s)
|
||||||
export NO_BRP_STRIP_DEBUG=true
|
export NO_BRP_STRIP_DEBUG=true
|
||||||
export NO_DEBUGINFO_STRIP_DEBUG=true
|
export NO_DEBUGINFO_STRIP_DEBUG=true
|
||||||
%define uboot_dir /boot
|
%define uboot_dir /boot
|
||||||
@ -172,6 +161,9 @@ install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
|
|||||||
%if %udoo_spl == 1
|
%if %udoo_spl == 1
|
||||||
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
install -D -m 0755 SPL %{buildroot}/boot/udoo_spl.bin
|
||||||
%endif
|
%endif
|
||||||
|
%if %imx6_spl == 1
|
||||||
|
install -D -m 0755 SPL %{buildroot}/boot/imx6-spl.bin
|
||||||
|
%endif
|
||||||
%if %socfpga_spl == 1
|
%if %socfpga_spl == 1
|
||||||
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
install -D -m 0755 u-boot-with-spl.sfp %{buildroot}/boot/u-boot-with-spl.sfp
|
||||||
%endif
|
%endif
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 11 09:16:16 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 9 12:06:53 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add udooneo
|
||||||
|
- Introduce IMX6_SPL, superseding per-board CUBOXI_SPL and UDOO_SPL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 6 14:29:12 UTC 2017 - afaerber@suse.de
|
||||||
|
|
||||||
|
- Add nanopineo
|
||||||
|
- Inline CHANGE_DATE into u-boot.spec.in to keep future diffs small
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 5 10:16:20 UTC 2017 - guillaume@opensuse.org
|
||||||
|
|
||||||
|
- Updated to v2017.01-rc3
|
||||||
|
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2017.01
|
||||||
|
* Patches dropped:
|
||||||
|
0002-XXX-openSUSE-XXX-omap3-Move-to-dist.patch
|
||||||
|
0003-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
0004-ARM-bcm283x-Implement-EFI-RTS-reset.patch
|
||||||
|
0005-bcm2835-video-Map-frame-buffer-as-3.patch
|
||||||
|
0006-bcm2835-Reserve-the-spin-table-in-e.patch
|
||||||
|
0007-efi_loader-fix-depends-on-line-of-E.patch
|
||||||
|
0008-efi-Use-device-device-path-type-Mes.patch
|
||||||
|
* Patches added:
|
||||||
|
0002-Revert-Revert-omap3-Use-raw-SPL-by-.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
Mon Dec 19 20:50:30 UTC 2016 - xxxxxmichl@googlemail.com
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user