From f90ab8277ae5b649ee5dea34c6f6cf1cbf9cd48c979be13af3a40bc683e4be1c Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 15 Jan 2015 14:58:47 +0000 Subject: [PATCH] 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 --- ...-Fix-raw-boot-mode-related-to-commit.patch | 57 ------------- fix_sata.patch | 84 ------------------- mx53loco-bootscr.patch | 8 -- u-boot-2015.01-rc3.tar.bz2 | 3 - u-boot-2015.01.tar.bz2 | 3 + u-boot-a10-olinuxino-lime.changes | 9 ++ u-boot-a10-olinuxino-lime.spec | 14 +--- u-boot-a20-olinuxino-lime2.changes | 9 ++ u-boot-a20-olinuxino-lime2.spec | 14 +--- u-boot-am335xevm.changes | 9 ++ u-boot-am335xevm.spec | 14 +--- u-boot-arndale.changes | 9 ++ u-boot-arndale.spec | 14 +--- u-boot-bananapi.changes | 9 ++ u-boot-bananapi.spec | 14 +--- u-boot-colibrit20iris.changes | 9 ++ u-boot-colibrit20iris.spec | 14 +--- u-boot-cubieboard.changes | 9 ++ u-boot-cubieboard.spec | 14 +--- u-boot-cubieboard2.changes | 9 ++ u-boot-cubieboard2.spec | 14 +--- u-boot-cubietruck.changes | 9 ++ u-boot-cubietruck.spec | 14 +--- u-boot-highbank.changes | 9 ++ u-boot-highbank.spec | 14 +--- u-boot-melea1000.changes | 9 ++ u-boot-melea1000.spec | 14 +--- u-boot-mx53loco.changes | 9 ++ u-boot-mx53loco.spec | 14 +--- u-boot-mx6qsabrelite.changes | 9 ++ u-boot-mx6qsabrelite.spec | 14 +--- u-boot-omap3beagle.changes | 9 ++ u-boot-omap3beagle.spec | 14 +--- u-boot-omap4panda.changes | 9 ++ u-boot-omap4panda.spec | 14 +--- u-boot-paz00.changes | 9 ++ u-boot-paz00.spec | 14 +--- u-boot-rpi.changes | 9 ++ u-boot-rpi.spec | 14 +--- u-boot-snow.changes | 9 ++ u-boot-snow.spec | 14 +--- u-boot-vexpressaemv8a.changes | 9 ++ u-boot-vexpressaemv8a.spec | 14 +--- u-boot.changes | 9 ++ u-boot.spec | 10 +-- u-boot.spec.in | 12 +-- 46 files changed, 266 insertions(+), 357 deletions(-) delete mode 100644 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch delete mode 100644 fix_sata.patch delete mode 100644 u-boot-2015.01-rc3.tar.bz2 create mode 100644 u-boot-2015.01.tar.bz2 diff --git a/0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch b/0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch deleted file mode 100644 index 460c8e9..0000000 --- a/0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch +++ /dev/null @@ -1,57 +0,0 @@ -From ca1f908171c0da7ee6ada74f3bf904946ab2abe2 Mon Sep 17 00:00:00 2001 -From: Guillaume GARDET -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 -Signed-off-by: Guillaume GARDET - -Cc: Tom Rini -Cc: Robert Nelson - ---- - 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 - diff --git a/fix_sata.patch b/fix_sata.patch deleted file mode 100644 index 6264666..0000000 --- a/fix_sata.patch +++ /dev/null @@ -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 -X-Patchwork-Id: 415412 -Message-Id: <1417079501-3034-1-git-send-email-smoch@web.de> -To: u-boot@lists.denx.de -Cc: Soeren Moch , Tom Rini -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 -Acked-by: Nikita Kiryanov -Tested-by: Nikita Kiryanov ---- -Changes in v2: -- fix type cast warning - -Cc: Tom Rini -Cc: Nikita Kiryanov -Cc: Simon Glass -Cc: guillaume.gardet@free.fr -Cc: Fabio Estevam -Cc: Stefano Babic ---- - 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; - } - diff --git a/mx53loco-bootscr.patch b/mx53loco-bootscr.patch index bbd0bdf..a49ce68 100644 --- a/mx53loco-bootscr.patch +++ b/mx53loco-bootscr.patch @@ -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 - #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" \ diff --git a/u-boot-2015.01-rc3.tar.bz2 b/u-boot-2015.01-rc3.tar.bz2 deleted file mode 100644 index 294c0c4..0000000 --- a/u-boot-2015.01-rc3.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5df34973e2322afc970ccad1e29ff25d72ebde469d0bf2c361ebeb71e233c6a2 -size 10197060 diff --git a/u-boot-2015.01.tar.bz2 b/u-boot-2015.01.tar.bz2 new file mode 100644 index 0000000..4888551 --- /dev/null +++ b/u-boot-2015.01.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383051a656ebe11757b17d38a3326387e4a1b0949ca8a9e8ee506bf71dac9fde +size 9982195 diff --git a/u-boot-a10-olinuxino-lime.changes b/u-boot-a10-olinuxino-lime.changes index e1dddb6..1739b18 100644 --- a/u-boot-a10-olinuxino-lime.changes +++ b/u-boot-a10-olinuxino-lime.changes @@ -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 diff --git a/u-boot-a10-olinuxino-lime.spec b/u-boot-a10-olinuxino-lime.spec index 2c954e1..05f5e17 100644 --- a/u-boot-a10-olinuxino-lime.spec +++ b/u-boot-a10-olinuxino-lime.spec @@ -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 # @@ -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 diff --git a/u-boot-a20-olinuxino-lime2.changes b/u-boot-a20-olinuxino-lime2.changes index e1dddb6..1739b18 100644 --- a/u-boot-a20-olinuxino-lime2.changes +++ b/u-boot-a20-olinuxino-lime2.changes @@ -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 diff --git a/u-boot-a20-olinuxino-lime2.spec b/u-boot-a20-olinuxino-lime2.spec index 16d966c..8d4e0a0 100644 --- a/u-boot-a20-olinuxino-lime2.spec +++ b/u-boot-a20-olinuxino-lime2.spec @@ -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 # @@ -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 diff --git a/u-boot-am335xevm.changes b/u-boot-am335xevm.changes index e1dddb6..1739b18 100644 --- a/u-boot-am335xevm.changes +++ b/u-boot-am335xevm.changes @@ -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 diff --git a/u-boot-am335xevm.spec b/u-boot-am335xevm.spec index d41fd84..1c9b437 100644 --- a/u-boot-am335xevm.spec +++ b/u-boot-am335xevm.spec @@ -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 # @@ -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 diff --git a/u-boot-arndale.changes b/u-boot-arndale.changes index e1dddb6..1739b18 100644 --- a/u-boot-arndale.changes +++ b/u-boot-arndale.changes @@ -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 diff --git a/u-boot-arndale.spec b/u-boot-arndale.spec index b1fe84f..322c5b6 100644 --- a/u-boot-arndale.spec +++ b/u-boot-arndale.spec @@ -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 # @@ -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 diff --git a/u-boot-bananapi.changes b/u-boot-bananapi.changes index e1dddb6..1739b18 100644 --- a/u-boot-bananapi.changes +++ b/u-boot-bananapi.changes @@ -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 diff --git a/u-boot-bananapi.spec b/u-boot-bananapi.spec index c488d0e..9d2f2a9 100644 --- a/u-boot-bananapi.spec +++ b/u-boot-bananapi.spec @@ -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 # @@ -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 diff --git a/u-boot-colibrit20iris.changes b/u-boot-colibrit20iris.changes index e1dddb6..1739b18 100644 --- a/u-boot-colibrit20iris.changes +++ b/u-boot-colibrit20iris.changes @@ -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 diff --git a/u-boot-colibrit20iris.spec b/u-boot-colibrit20iris.spec index a39715b..5700283 100644 --- a/u-boot-colibrit20iris.spec +++ b/u-boot-colibrit20iris.spec @@ -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 # @@ -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 diff --git a/u-boot-cubieboard.changes b/u-boot-cubieboard.changes index e1dddb6..1739b18 100644 --- a/u-boot-cubieboard.changes +++ b/u-boot-cubieboard.changes @@ -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 diff --git a/u-boot-cubieboard.spec b/u-boot-cubieboard.spec index 2ce6630..9fbdba3 100644 --- a/u-boot-cubieboard.spec +++ b/u-boot-cubieboard.spec @@ -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 # @@ -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 diff --git a/u-boot-cubieboard2.changes b/u-boot-cubieboard2.changes index e1dddb6..1739b18 100644 --- a/u-boot-cubieboard2.changes +++ b/u-boot-cubieboard2.changes @@ -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 diff --git a/u-boot-cubieboard2.spec b/u-boot-cubieboard2.spec index 9ed9b3e..aa135c5 100644 --- a/u-boot-cubieboard2.spec +++ b/u-boot-cubieboard2.spec @@ -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 # @@ -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 diff --git a/u-boot-cubietruck.changes b/u-boot-cubietruck.changes index e1dddb6..1739b18 100644 --- a/u-boot-cubietruck.changes +++ b/u-boot-cubietruck.changes @@ -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 diff --git a/u-boot-cubietruck.spec b/u-boot-cubietruck.spec index 9965b87..08a36eb 100644 --- a/u-boot-cubietruck.spec +++ b/u-boot-cubietruck.spec @@ -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 # @@ -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 diff --git a/u-boot-highbank.changes b/u-boot-highbank.changes index e1dddb6..1739b18 100644 --- a/u-boot-highbank.changes +++ b/u-boot-highbank.changes @@ -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 diff --git a/u-boot-highbank.spec b/u-boot-highbank.spec index abd2278..9a61168 100644 --- a/u-boot-highbank.spec +++ b/u-boot-highbank.spec @@ -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 # @@ -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 diff --git a/u-boot-melea1000.changes b/u-boot-melea1000.changes index e1dddb6..1739b18 100644 --- a/u-boot-melea1000.changes +++ b/u-boot-melea1000.changes @@ -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 diff --git a/u-boot-melea1000.spec b/u-boot-melea1000.spec index 480a8d4..913869b 100644 --- a/u-boot-melea1000.spec +++ b/u-boot-melea1000.spec @@ -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 # @@ -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 diff --git a/u-boot-mx53loco.changes b/u-boot-mx53loco.changes index e1dddb6..1739b18 100644 --- a/u-boot-mx53loco.changes +++ b/u-boot-mx53loco.changes @@ -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 diff --git a/u-boot-mx53loco.spec b/u-boot-mx53loco.spec index f62354e..1185c14 100644 --- a/u-boot-mx53loco.spec +++ b/u-boot-mx53loco.spec @@ -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 # @@ -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 diff --git a/u-boot-mx6qsabrelite.changes b/u-boot-mx6qsabrelite.changes index e1dddb6..1739b18 100644 --- a/u-boot-mx6qsabrelite.changes +++ b/u-boot-mx6qsabrelite.changes @@ -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 diff --git a/u-boot-mx6qsabrelite.spec b/u-boot-mx6qsabrelite.spec index b13c89b..82301c5 100644 --- a/u-boot-mx6qsabrelite.spec +++ b/u-boot-mx6qsabrelite.spec @@ -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 # @@ -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 diff --git a/u-boot-omap3beagle.changes b/u-boot-omap3beagle.changes index e1dddb6..1739b18 100644 --- a/u-boot-omap3beagle.changes +++ b/u-boot-omap3beagle.changes @@ -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 diff --git a/u-boot-omap3beagle.spec b/u-boot-omap3beagle.spec index 568548f..f5f11d0 100644 --- a/u-boot-omap3beagle.spec +++ b/u-boot-omap3beagle.spec @@ -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 # @@ -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 diff --git a/u-boot-omap4panda.changes b/u-boot-omap4panda.changes index e1dddb6..1739b18 100644 --- a/u-boot-omap4panda.changes +++ b/u-boot-omap4panda.changes @@ -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 diff --git a/u-boot-omap4panda.spec b/u-boot-omap4panda.spec index 836fdd2..73f2b2d 100644 --- a/u-boot-omap4panda.spec +++ b/u-boot-omap4panda.spec @@ -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 # @@ -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 diff --git a/u-boot-paz00.changes b/u-boot-paz00.changes index e1dddb6..1739b18 100644 --- a/u-boot-paz00.changes +++ b/u-boot-paz00.changes @@ -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 diff --git a/u-boot-paz00.spec b/u-boot-paz00.spec index bd32ebf..d79707b 100644 --- a/u-boot-paz00.spec +++ b/u-boot-paz00.spec @@ -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 # @@ -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 diff --git a/u-boot-rpi.changes b/u-boot-rpi.changes index e1dddb6..1739b18 100644 --- a/u-boot-rpi.changes +++ b/u-boot-rpi.changes @@ -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 diff --git a/u-boot-rpi.spec b/u-boot-rpi.spec index 155cfd3..eadddf3 100644 --- a/u-boot-rpi.spec +++ b/u-boot-rpi.spec @@ -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 # @@ -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 diff --git a/u-boot-snow.changes b/u-boot-snow.changes index e1dddb6..1739b18 100644 --- a/u-boot-snow.changes +++ b/u-boot-snow.changes @@ -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 diff --git a/u-boot-snow.spec b/u-boot-snow.spec index 7940e31..d862258 100644 --- a/u-boot-snow.spec +++ b/u-boot-snow.spec @@ -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 # @@ -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 diff --git a/u-boot-vexpressaemv8a.changes b/u-boot-vexpressaemv8a.changes index e1dddb6..1739b18 100644 --- a/u-boot-vexpressaemv8a.changes +++ b/u-boot-vexpressaemv8a.changes @@ -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 diff --git a/u-boot-vexpressaemv8a.spec b/u-boot-vexpressaemv8a.spec index 97ec07f..e9b95f7 100644 --- a/u-boot-vexpressaemv8a.spec +++ b/u-boot-vexpressaemv8a.spec @@ -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 # @@ -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 diff --git a/u-boot.changes b/u-boot.changes index e1dddb6..1739b18 100644 --- a/u-boot.changes +++ b/u-boot.changes @@ -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 diff --git a/u-boot.spec b/u-boot.spec index 1f79a74..6723525 100644 --- a/u-boot.spec +++ b/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 # @@ -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 diff --git a/u-boot.spec.in b/u-boot.spec.in index 503a5a2..27aa0f6 100644 --- a/u-boot.spec.in +++ b/u-boot.spec.in @@ -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