forked from pool/u-boot
Accepting request 281095 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/281095 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=39
This commit is contained in:
parent
f5ead649c6
commit
f90ab8277a
@ -1,57 +0,0 @@
|
||||
From ca1f908171c0da7ee6ada74f3bf904946ab2abe2 Mon Sep 17 00:00:00 2001
|
||||
From: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||
Date: Mon, 15 Dec 2014 09:57:39 +0100
|
||||
Subject: [U-Boot] [PATCH] spl: mmc: Fix raw boot mode (related to commit
|
||||
4c5bbc2328a24f5e1ee990c9a9527e48e5fb3b5f)
|
||||
|
||||
As reported by Robert Nelson, commit 4c5bbc2328a24f5e1ee990c9a9527e48e5fb3b5f
|
||||
may break MMC RAW boot mode.
|
||||
This patch fixes the check path to fix MMC Raw boot mode.
|
||||
|
||||
Tested raw boot mode and FS boot mode on a pandaboard (rev. A3).
|
||||
|
||||
Reported-by: Robert Nelson <robertcnelson@gmail.com>
|
||||
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
|
||||
|
||||
Cc: Tom Rini <trini@ti.com>
|
||||
Cc: Robert Nelson <robertcnelson@gmail.com>
|
||||
|
||||
---
|
||||
common/spl/spl_mmc.c | 19 ++++++++++++++++---
|
||||
1 file changed, 16 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c
|
||||
index 7bae16b..c2e596b 100644
|
||||
--- a/common/spl/spl_mmc.c
|
||||
+++ b/common/spl/spl_mmc.c
|
||||
@@ -172,11 +172,24 @@ void spl_mmc_load_image(void)
|
||||
err = mmc_load_image_raw_sector(mmc,
|
||||
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR);
|
||||
#endif
|
||||
- } else {
|
||||
+ }
|
||||
+
|
||||
+ switch(boot_mode){
|
||||
+ case MMCSD_MODE_RAW:
|
||||
+#if defined(CONFIG_SPL_FAT_SUPPORT) || defined(CONFIG_SPL_EXT_SUPPORT)
|
||||
+ case MMCSD_MODE_FS:
|
||||
+#endif
|
||||
+#ifdef CONFIG_SUPPORT_EMMC_BOOT
|
||||
+ case MMCSD_MODE_EMMCBOOT:
|
||||
+#endif
|
||||
+ /* Boot mode is ok. Nothing to do. */
|
||||
+ break;
|
||||
+ case MMCSD_MODE_UNDEFINED:
|
||||
+ default:
|
||||
#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
|
||||
- puts("spl: wrong MMC boot mode\n");
|
||||
+ puts("spl: wrong MMC boot mode\n");
|
||||
#endif
|
||||
- hang();
|
||||
+ hang();
|
||||
}
|
||||
|
||||
if (err)
|
||||
--
|
||||
1.8.4.5
|
||||
|
@ -1,84 +0,0 @@
|
||||
From patchwork Thu Nov 27 09:11:41 2014
|
||||
Content-Type: text/plain; charset="utf-8"
|
||||
MIME-Version: 1.0
|
||||
Content-Transfer-Encoding: 7bit
|
||||
Subject: [U-Boot,v2] sata: fix reset_sata for dwc_ahsata
|
||||
From: Soeren Moch <smoch@web.de>
|
||||
X-Patchwork-Id: 415412
|
||||
Message-Id: <1417079501-3034-1-git-send-email-smoch@web.de>
|
||||
To: u-boot@lists.denx.de
|
||||
Cc: Soeren Moch <smoch@web.de>, Tom Rini <trini@ti.com>
|
||||
Date: Thu, 27 Nov 2014 10:11:41 +0100
|
||||
|
||||
- fix crash when sata device is not initialized
|
||||
- remove disable_sata_clock() since it is not clear which clock for which
|
||||
device should be disabled here
|
||||
- call disable_sata_clock() for mx6 in preboot_os instead
|
||||
|
||||
Signed-off-by: Soeren Moch <smoch@web.de>
|
||||
Acked-by: Nikita Kiryanov <nikita@compulab.co.il>
|
||||
Tested-by: Nikita Kiryanov <nikita@compulab.co.il>
|
||||
---
|
||||
Changes in v2:
|
||||
- fix type cast warning
|
||||
|
||||
Cc: Tom Rini <trini@ti.com>
|
||||
Cc: Nikita Kiryanov <nikita@compulab.co.il>
|
||||
Cc: Simon Glass <sjg@chromium.org>
|
||||
Cc: guillaume.gardet@free.fr
|
||||
Cc: Fabio Estevam <festevam@gmail.com>
|
||||
Cc: Stefano Babic <sbabic@denx.de>
|
||||
---
|
||||
arch/arm/imx-common/cpu.c | 3 +++
|
||||
drivers/block/dwc_ahsata.c | 14 ++++++++------
|
||||
2 files changed, 11 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
|
||||
index b58df7d..28ccd29 100644
|
||||
--- a/arch/arm/imx-common/cpu.c
|
||||
+++ b/arch/arm/imx-common/cpu.c
|
||||
@@ -206,6 +206,9 @@ void arch_preboot_os(void)
|
||||
{
|
||||
#if defined(CONFIG_CMD_SATA)
|
||||
sata_stop();
|
||||
+#if defined(CONFIG_MX6)
|
||||
+ disable_sata_clock();
|
||||
+#endif
|
||||
#endif
|
||||
#if defined(CONFIG_VIDEO_IPUV3)
|
||||
/* disable video before launching O/S */
|
||||
diff --git a/drivers/block/dwc_ahsata.c b/drivers/block/dwc_ahsata.c
|
||||
index 9a2b547..01a4148 100644
|
||||
--- a/drivers/block/dwc_ahsata.c
|
||||
+++ b/drivers/block/dwc_ahsata.c
|
||||
@@ -594,22 +594,24 @@ int init_sata(int dev)
|
||||
|
||||
int reset_sata(int dev)
|
||||
{
|
||||
- struct ahci_probe_ent *probe_ent =
|
||||
- (struct ahci_probe_ent *)sata_dev_desc[dev].priv;
|
||||
- struct sata_host_regs *host_mmio =
|
||||
- (struct sata_host_regs *)probe_ent->mmio_base;
|
||||
+ struct ahci_probe_ent *probe_ent;
|
||||
+ struct sata_host_regs *host_mmio;
|
||||
|
||||
if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
|
||||
printf("The sata index %d is out of ranges\n\r", dev);
|
||||
return -1;
|
||||
}
|
||||
|
||||
+ probe_ent = (struct ahci_probe_ent *)sata_dev_desc[dev].priv;
|
||||
+ if (NULL == probe_ent)
|
||||
+ /* not initialized, so nothing to reset */
|
||||
+ return 0;
|
||||
+
|
||||
+ host_mmio = (struct sata_host_regs *)probe_ent->mmio_base;
|
||||
setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR);
|
||||
while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR)
|
||||
udelay(100);
|
||||
|
||||
- disable_sata_clock();
|
||||
-
|
||||
return 0;
|
||||
}
|
||||
|
@ -2,14 +2,6 @@ Index: include/configs/mx53loco.h
|
||||
===================================================================
|
||||
--- include/configs/mx53loco.h.orig
|
||||
+++ include/configs/mx53loco.h
|
||||
@@ -94,6 +94,7 @@
|
||||
/* Command definition */
|
||||
#include <config_cmd_default.h>
|
||||
#define CONFIG_CMD_BOOTZ
|
||||
+#define CONFIG_SUPPORT_RAW_INITRD /* bootz raw initrd support */
|
||||
|
||||
#undef CONFIG_CMD_IMLS
|
||||
|
||||
@@ -116,11 +117,11 @@
|
||||
"mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
|
||||
"mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot}\0" \
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5df34973e2322afc970ccad1e29ff25d72ebde469d0bf2c361ebeb71e233c6a2
|
||||
size 10197060
|
3
u-boot-2015.01.tar.bz2
Normal file
3
u-boot-2015.01.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:383051a656ebe11757b17d38a3326387e4a1b0949ca8a9e8ee506bf71dac9fde
|
||||
size 9982195
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-a10-olinuxino-lime
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-a10-olinuxino-lime
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a10-olinuxino-lime arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-a20-olinuxino-lime2
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-a20-olinuxino-lime2
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the a20-olinuxino-lime2 arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-am335xevm
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-am335xevm
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the am335xevm arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-arndale
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-arndale
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the arndale arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-bananapi
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-bananapi
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the bananapi arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-colibrit20iris
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-colibrit20iris
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the colibrit20iris arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-cubieboard
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-cubieboard
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the cubieboard arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-cubieboard2
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-cubieboard2
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the cubieboard2 arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-cubietruck
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-cubietruck
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the cubietruck arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-highbank
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-highbank
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the highbank arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-melea1000
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-melea1000
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the melea1000 arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-mx53loco
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-mx53loco
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the mx53loco arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-mx6qsabrelite
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-mx6qsabrelite
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the mx6qsabrelite arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-omap3beagle
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-omap3beagle
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the omap3beagle arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-omap4panda
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-omap4panda
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the omap4panda arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-paz00
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-paz00
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the paz00 arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-rpi
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-rpi
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the rpi arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-snow
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-snow
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the snow arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot-vexpressaemv8a
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl 0
|
||||
|
||||
Name: u-boot-vexpressaemv8a
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the vexpressaemv8a arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 14:32:17 UTC 2015 - guillaume@opensuse.org
|
||||
|
||||
- Update to 2015.01:
|
||||
* Drop upstreamed patches:
|
||||
- 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
- fix_sata.patch
|
||||
* Update partially upstreamed mx53loco-bootscr.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 11:10:23 UTC 2014 - guillaume@opensuse.org
|
||||
|
||||
|
10
u-boot.spec
10
u-boot.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package u-boot
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
||||
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
#
|
||||
@ -19,14 +19,13 @@
|
||||
|
||||
|
||||
Name: u-boot
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: Tools for the u-boot Firmware
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: u-boot-%{version}.tar.bz2
|
||||
Source: u-boot-2015.01-rc3.tar.bz2
|
||||
Source: u-boot-%{version}.tar.bz2
|
||||
BuildRequires: libopenssl-devel
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
@ -46,8 +45,7 @@ This package contains:
|
||||
mkimage- a tool that creates kernel bootable images for u-boot.
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
|
||||
%build
|
||||
# needed for include/config/auto.conf
|
||||
|
@ -25,22 +25,19 @@
|
||||
%define cuboxi_spl CUBOXI_SPL
|
||||
|
||||
Name: u-boot-BOARDNAME
|
||||
Version: 2015.01~rc3
|
||||
Version: 2015.01
|
||||
Release: 0
|
||||
Summary: The u-boot firmware for the BOARDNAME arm platform
|
||||
License: GPL-2.0
|
||||
Group: System/Boot
|
||||
Url: http://www.denx.de/wiki/U-Boot
|
||||
#Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01-rc3.tar.bz2
|
||||
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
|
||||
Source2: arndale-bl1.img
|
||||
Source300: u-boot-rpmlintrc
|
||||
Patch1: enable_spl_ext_support_for_ti_armv7.patch
|
||||
Patch2: fix_beagle_spl_build.patch
|
||||
Patch3: mx53loco-bootscr.patch
|
||||
Patch4: fix_snow_config.patch
|
||||
Patch10: fix_sata.patch
|
||||
Patch11: 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
|
||||
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
|
||||
Patch20: add_snow_usb_boot.patch
|
||||
# Apply fix_bootpart_snow_only.patch only for snow, otherwise will break other boards
|
||||
@ -72,8 +69,7 @@ Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded Pow
|
||||
This package contains documentation for u-boot firmware
|
||||
|
||||
%prep
|
||||
#%setup -q -n u-boot-%{version}
|
||||
%setup -q -n u-boot-2015.01-rc3
|
||||
%setup -q -n u-boot-%{version}
|
||||
# is non-free licensed, and we don't need it (bnc#773824)
|
||||
rm -rf board/Marvell
|
||||
# Any custom patches to be applied on top of mainline u-boot
|
||||
@ -81,8 +77,6 @@ rm -rf board/Marvell
|
||||
%patch2 -p1
|
||||
%patch3
|
||||
%patch4 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%if "%{name}" == "u-boot-snow"
|
||||
# Apply some patches only for u-boot-snow to avoid to break other boards
|
||||
%patch20 -p1
|
||||
|
Loading…
Reference in New Issue
Block a user