Accepting request 303531 from Base:System

- update to 2015.04
- Remove upstreamed patch: 
  0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20

- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
  A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
  www.olimex.com

- update to 2015.04
- Remove upstreamed patch: 
  0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20

- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
  A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
  www.olimex.com

- update to 2015.04
- Remove upstreamed patch: 
  0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20

- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
  A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
  www.olimex.com

- update to 2015.04
- Remove upstreamed patch: 
  0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch

OBS-URL: https://build.opensuse.org/request/show/303531
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=44
This commit is contained in:
Stephan Kulow 2015-04-25 07:53:30 +00:00 committed by Git OBS Bridge
parent ef95495681
commit 81b8de3b94
55 changed files with 3857 additions and 200 deletions

View File

@ -1,36 +0,0 @@
From fed2f4c2e6d5ebc57b465783f44217c91550c0b8 Mon Sep 17 00:00:00 2001
From: Guillaume GARDET <guillaume.gardet@free.fr>
Date: Wed, 25 Feb 2015 15:57:56 +0100
Subject: [U-Boot] [PATCH] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.
Commit 2e82e9252695a612ab0cbf40fa0c7368515f6506 'Exynos: Clock: Cleanup
soc_get_periph_rate' introduced a bug in I2C config. This patch makes cros_ec
keyboard working again on Samsung Chromebook (snow).
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Akshay Saraswat <akshay.s@samsung.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Joonyoung Shim <jy0922.shim@samsung.com>
---
arch/arm/cpu/armv7/exynos/clock.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch/arm/cpu/armv7/exynos/clock.c
index c6455c2..7f47d4d 100644
--- a/arch/arm/cpu/armv7/exynos/clock.c
+++ b/arch/arm/cpu/armv7/exynos/clock.c
@@ -423,8 +423,8 @@ static unsigned long exynos5_get_periph_rate(int peripheral)
case PERIPH_ID_I2C6:
case PERIPH_ID_I2C7:
src = EXYNOS_SRC_MPLL;
- div = readl(&clk->div_top0);
- sub_div = readl(&clk->div_top1);
+ sub_div = readl(&clk->div_top0);
+ div = readl(&clk->div_top1);
break;
default:
debug("%s: invalid peripheral %d", __func__, peripheral);
--
1.8.4.5

View File

@ -5,7 +5,7 @@ BOARDCONFIG="$2"
ARCH_RESTRICTIONS="$3 $4"
armv6_boards="rpi"
armv7_boards="omap3_beagle omap4_panda am335x_evm arndale highbank mx53loco mx6qsabrelite Bananapi Cubieboard Cubieboard2 Cubietruck Mele_A1000 colibri_t20_iris paz00 snow A10-OLinuXino-Lime A20-OLinuXino-Lime2 pcm051_rev3 rpi_2"
armv7_boards="omap3_beagle omap4_panda am335x_evm arndale highbank mx53loco mx6qsabrelite Bananapi Cubieboard Cubieboard2 Cubietruck Mele_A1000 colibri_t20 paz00 snow A10-OLinuXino-Lime A20-OLinuXino-Lime2 pcm051_rev3 rpi_2 A20-OLinuXino-Lime A13-OLinuXinoM A13-OLinuXino A20-OLinuXino_MICRO"
aarch64_boards=""
if [ ! "$1" -o ! "$2" -o ! "$3" ]; then
@ -44,7 +44,7 @@ mx53loco*|mx6qsabrelite*|efika*) BINEND=imx ;;
OMAP_SPL=1 ;;
*arndale*) BINEND=bin
ARNDALE_SPL=1 ;;
*Bananapi*|*Cubieboard*|Cubietruck*|*-OLinuXino-Lime*) BINEND=img
*Bananapi*|*Cubieboard*|Cubietruck*|*-OLinuXino*) BINEND=img
SUNXI_SPL=1 ;;
*Mele_A1000*) BINEND=img
SUNXI_SPL=1 ;;

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:985aeaeb380be34a0b99baa51444c8d5a85a5b4fc27ba3bae5d87f30314a31ae
size 9441276

3
u-boot-2015.04.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a1a70df586655f527befa6f12e184e96ed61b126e5a567382321b17200f5d60
size 9471487

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-a10-olinuxino-lime
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

137
u-boot-a13-olinuxino.spec Normal file
View File

@ -0,0 +1,137 @@
#
# spec file for package u-boot-a13-olinuxino
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define x_loader 0
%define origen_spl 0
%define sunxi_spl 1
%define arndale_spl 0
%define cuboxi_spl 0
Name: u-boot-a13-olinuxino
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the a13-olinuxino 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
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
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc
BuildRequires: dtc >= 1.4.0
Provides: u-boot-loader
Conflicts: otherproviders(u-boot-loader)
%if %x_loader == 1
Obsoletes: x-loader-a13-olinuxino
Provides: x-loader-a13-olinuxino
%endif
ExclusiveArch: armv7l armv7hl
%description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a13-olinuxino arm platform.
%package doc
Summary: Documentation for the u-boot Firmware
Group: Documentation/Other
%description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware
%prep
%setup -q -n u-boot-%{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
%patch1
%patch2 -p1
%patch3
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1
%endif
%patch99 -p1
%build
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXino_defconfig
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
%if "%{name}" == "u-boot-snow"
# Chromebook ARM (snow) need a uImage format
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
%endif
%install
# Some times u-boot needs a dtb to configure itself appended to the binary.
# In that case prefer the one with a working dtb already appended.
if [ -f u-boot-dtb-tegra.bin ]; then
install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}/boot/u-boot.img
elif [ -f u-boot-dtb.img ]; then
install -D -m 0644 u-boot-dtb.img %{buildroot}/boot/u-boot.img
else
install -D -m 0644 u-boot.img %{buildroot}/boot/u-boot.img
fi
%if %x_loader == 1
install -D -m 0755 MLO %{buildroot}/boot/MLO
%endif
%if %origen_spl == 1
install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
%endif
%if %arndale_spl == 1
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif
%if %sunxi_spl == 1
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
%endif
%if %cuboxi_spl == 1
install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
%endif
%files
%defattr(-,root,root)
/boot/*
%doc Licenses/gpl-2.0.txt README
%files doc
%defattr(-,root,root)
# Generic documents
%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem
# Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation
%doc doc/README.ARM-memory-map
%changelog

View File

@ -0,0 +1,729 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org
- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI)
-------------------------------------------------------------------
Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc5
-------------------------------------------------------------------
Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc4
-------------------------------------------------------------------
Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org
- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
to fix keyboard on Chromebook
-------------------------------------------------------------------
Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc3
- update patch: drop-marvell.patch
-------------------------------------------------------------------
Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org
- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3
-------------------------------------------------------------------
Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org
- Remove unneeded fix_snow_config.patch
-------------------------------------------------------------------
Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org
- Add rpi2 armv7 board
-------------------------------------------------------------------
Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc2
-------------------------------------------------------------------
Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc1
* Remove upstreamed patch pcm051-bootscr.patch
* Remove no more used patch fix_bootpart_snow_only.patch (now u-boot
scan all known partitions, so no need to set a different boot partition)
-------------------------------------------------------------------
Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com
- Enable pcm051rev3 for Phytec Wega board
* Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1)
-------------------------------------------------------------------
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
- Backport SPL MMC raw boot mode fix:
* 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
-------------------------------------------------------------------
Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com
- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org
- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in
-------------------------------------------------------------------
Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc3
* Drop upstreamed/unneeded patches:
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
- boot_mode_fallback.patch
- fix_snow_usb_support
- fix_spl_ext.patch
- fix_arm_hf_toolchain.patch
- origen-ext2.patch
* Update patch:
- fix_snow_config.patch
* Follow upstream: rpi_b config renamed to rpi
-------------------------------------------------------------------
Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org
- Update snow (chromebook)
* Update patch:
- fix_snow_config.patch patch
* Add patches:
- add_snow_usb_boot.patch to be able to boot from USB0
- fix_bootpart_snow_only.patch to boot on partition #2 (snow only!)
* Backport patches:
- fix_snow_usb_support.patch to fix USB on snow
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
* Drop unneeded/obsolete patches:
- fix_exynos5_text_base.patch
- fix_snow_extra_env_settings.patch
-------------------------------------------------------------------
Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org
- Add Bananapi initial support
-------------------------------------------------------------------
Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc2
- Update patch fix_omap_boot_mode.patch to be upstreamable and
rename it to boot_mode_fallback.patch
- Drop obsolete patch: arndale.patch
- Add patches:
* fix_arm_hf_toolchain.patch: fix build with hard float toolchain
* fix_spl_ext.patch: fix SPL EXT error checks
* fix_sata.patch: fix sata support and fix also mx53loco build
-------------------------------------------------------------------
Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org
- Fix mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net
- Add u-boot-with-sunxi-spl.bin for sunxi boards
-------------------------------------------------------------------
Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org
- Make use of RPM_OPT_FLAGS during make
-------------------------------------------------------------------
Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org
- Fix sunxi boards (use u-boot.img instead of u-boot.bin)
- Remove duplicated default install line
-------------------------------------------------------------------
Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc1
- Drop upstreamed patches:
* add_spl_extfs_support.patch
* ti_common_initrd_support.patch
- Refresh patch:
* drop-marvell.patch
- Drop CREDITS file from DOC (dropped upstream)
-------------------------------------------------------------------
Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org
- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards
-------------------------------------------------------------------
Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10
- Drop upstreamed patch:
* fix_sabrelite_boot.scr.patch
- Refresh patches:
* arndale.patch
* fix_snow_config.patch
* fix_exynos5_text_base.patch
* exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch)
-------------------------------------------------------------------
Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc3
- Drop upstreamed patches:
* beagle-bootscr.patch
* panda-bootscr.patch
* am335x_evm-bootscr.patch
- Refresh patches:
* fix_sabrelite_boot.scr.patch
* drop-marvell.patch
* add_spl_extfs_support.patch
- Add a new patch to fix omap3beagle spl build:
* fix_beagle_spl_build.patch
-------------------------------------------------------------------
Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org
- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos
since it is not upstreamed), so drop related patches:
* v2014.04-sunxi.patch
* cubox-i-v2014.04-port.patch
* cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc2
- drop upstreamed patch rpi_b-bootscr.patch
- drop fix_spl_build_for_am335x.patch (does build without it)
- Refresh patches:
* drop-marvell.patch
* fix_snow_config.patch
-------------------------------------------------------------------
Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org
- Update SPL EXT fs support:
* For omap boards (beagle and panda), SPL now looks for u-boot.img
as upstream instead of u-boot.bin
* Remove mlo-ext2.patch to make proper patches in
order to ease upstreaming our EXT fs SPL functions
* Add panda-bootscr.patch to fix panda boot (was included in
mlo-ext2.patch)
* Add fix_omap_boot_mode.patch to fix beagle and panda boot mode
(was included in mlo-ext2.patch)
* Add add_spl_extfs_support.patch to get proper SPL EXT fs functions
* Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs
support for TI ARMv7 boards
-------------------------------------------------------------------
Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com
- Update to version 2014.10-rc1 and update patches
-------------------------------------------------------------------
Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org
- Rename rpmlintrc to %{name}-rpmlintrc.
Follow the packaging guidelines.
-------------------------------------------------------------------
Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de
- add u-boot-cubietruck for Cubietruck (Cubieboard 3)
-------------------------------------------------------------------
Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de
- add u-boot-mx6cubox-i for Cubox-i and Hummingboard
* currently conflicts with mlo-ext2 patch for omap4
so only for cubox-i target mlo-ext2.patch is skipped
and cubox-i patches are applied
* patch source: https://github.com/vorlonofportland/u-boot/
cubox-i-v2014.04-port.patch
cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org
- Enhance pre_checkin.sh script to handle arch restrictions
-------------------------------------------------------------------
Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org
- Fix builds :
* 'tools' target is now 'tools-only'
* kermit scripts moved from 'tools/scripts' to 'tools/kermit/'
* Enhanced pre_checkin.sh script to handle uppercases in config name
* Renamed config from cubieboard to Cubieboard
* Renamed config from cubieboard2 to Cubieboard2
* Renamed config from hyundai_a7hd to Hyundai_A7HD
* Renamed config from mele_a1000 to Mele_A1000
-------------------------------------------------------------------
Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org
- Add vexpress_aemv8a board
-------------------------------------------------------------------
Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org
- Update to v2014.04
* Update mlo-ext2.patch
* Update mx53loco-bootscr.patch
* Update origen-ext2.patch
* Dropped v2014.01-sunxi.patch and created
v2014.04-sunxi.patch by diffing u-boot-2014.04 with
u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579
* Update rpi_b-bootscr.patch
* Drop gnuhash.patch (upstreamed)
-------------------------------------------------------------------
Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org
- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board)
-------------------------------------------------------------------
Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org
- add u-boot-snow (for Chromebook ARM)
-------------------------------------------------------------------
Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org
- Fix boot.scr location for beagle and origen
-------------------------------------------------------------------
Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com
- add u-boot-cubieboard2
-------------------------------------------------------------------
Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de
- Drop 0006-ARMV7-hardfp-build-fix.patch:
v2014.01 checks if -msoft-float compiles okay, and
U-Boot is soft-float according to Tom Rini
-------------------------------------------------------------------
Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org
- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with
fix_spl_build_for_am335x.patch to reduce size of am335x SPL
-------------------------------------------------------------------
Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de
- Update to v2014.01
* Manually updated 0006-ARMV7-hardfp-build-fix.patch
* Dropped v2013.10-sunxi.patch and created
v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto
u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b
* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts
* Rebased mlo-ext2.patch:
omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by
ti_common_initrd_support.patch.
am335xevm build is known breaking due to size constraints not
trivially solvable without dropping our patch.
-------------------------------------------------------------------
Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de
- Fix regression in packaging u-boot-dtb-tegra.bin:
There is in fact a u-boot-spl.bin SPL being built,
but it is 0xff-padded as u-boot-spl-pad.bin and then
prepended to u-boot.bin and the .dtb.
u-boot-dtb.bin exists independently as just u-boot.bin and .dtb,
so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin.
-------------------------------------------------------------------
Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com
- The "Tegra SPL" is not an SPL but a differently named u-boot.bin
file. Fix up the generation scripts.
-------------------------------------------------------------------
Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de
- Include Tegra SPL for Colibri T20
-------------------------------------------------------------------
Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com
- switch raspberry to ext2
-------------------------------------------------------------------
Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com
- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de
- rpi_b-bootscr.patch: Change rpi_b to use boot.scr
-------------------------------------------------------------------
Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com
- remove origin flavor
-------------------------------------------------------------------
Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de
- Enable paz00 config (Toshiba AC100)
-------------------------------------------------------------------
Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de
- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris)
- Update u-boot.spec.in copyright and fix typo in comment
-------------------------------------------------------------------
Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com
- prefer u-boot-dtb.bin over u-boot.bin
- simplify files section
-------------------------------------------------------------------
Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com
- mlo-ext2.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com
- Add am335x_evm-bootscr.patch: Add bootscr to AM335x
platform based devices
-------------------------------------------------------------------
Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org
- Remove old unused patches:
* v2013.04-sunxi.patch
* loadaddr-defaults.patch
-------------------------------------------------------------------
Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org
- Add ti_common_initrd_support.patch to enable initrd support for
AM335x boards
-------------------------------------------------------------------
Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org
- Add am335x_evm support which includes: Beagle Bone,
Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK
-------------------------------------------------------------------
Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org
- Add Arndale support
-------------------------------------------------------------------
Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org
- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch
-------------------------------------------------------------------
Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org
- Remove kerneladdr and ramdiskaddr definition in u-boot patches
(now done in JeOS image with u-boot hooks)
- Update patches to current version:
* 0006-ARMV7-hardfp-build-fix.patch
* beagle-bootscr.patch
* mx53loco-bootscr.patch
* mlo-ext2.patch
- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch
- Rename exynos-ext2.patch in origen-ext2.patch
-------------------------------------------------------------------
Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org
- Update to 2013.10
-------------------------------------------------------------------
Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org
- Fix OMAP4 pandaboard EXT2 boot
-------------------------------------------------------------------
Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org
- Fix u-boot.bin and boot.scr place since they are now in boot/ folder.
-------------------------------------------------------------------
Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com
- add support for cubieboard, hyundaia7hd, melea1000
-------------------------------------------------------------------
Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com
- update to 2013.04
* no upstream changelog available
- remove dead u-boot-raspberrypi* (actually called rpib now)
- add rpib variant
-------------------------------------------------------------------
Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org
- add omap3_beagle to targets
-------------------------------------------------------------------
Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com
- remove u8500href subpackage, kernel got dropped
-------------------------------------------------------------------
Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com
- update to 2013.04rc2
- enable bootz support on all boards
-------------------------------------------------------------------
Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com
- fix mlo-ext2.patch to actually use the ext4 infrastructure
-------------------------------------------------------------------
Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com
- update mlo-ext2.patch:
* use the ext4 driver now since ext2 got removed
-------------------------------------------------------------------
Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com
- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch:
* backport upstream sdhc fixes
-------------------------------------------------------------------
Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de
- update to 2012.10:
- refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch,
loadaddr-defaults.patch, mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com
- fix origen by putting the ramdisk higher
-------------------------------------------------------------------
Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com
- remove Marvell sources as they are non-free licensed (bnc#773824)
-------------------------------------------------------------------
Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com
- fix ext2 support for origen
- add origen-spl.bin for origen
-------------------------------------------------------------------
Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com
- merge u-boot-tools
-------------------------------------------------------------------
Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com
- add ext2 support by default in mx53loco
-------------------------------------------------------------------
Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com
- add support for mx53loco
-------------------------------------------------------------------
Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com
- remove u-boot-omap3beagle
-------------------------------------------------------------------
Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com
- bump to 2012.04.01
- fixes bug in cmdline parsing
-------------------------------------------------------------------
Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com
- add calxeda highbank support
-------------------------------------------------------------------
Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com
- autoload boot.scr on beagle, so we can boot again
-------------------------------------------------------------------
Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com
- update to upstream u-boot 2012.04
-> gets rid of linaro fork, only mainline now
-> gets us omap3 MLO support, no more need for x-loader
-> potentially fixes voltage issues on omap4
-------------------------------------------------------------------
Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de
- add SUSE style conflicts to avoid installation of multiple
boot loaders
-------------------------------------------------------------------
Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org
- Included u-boot.spec.in and gen_spec.sh in the spec file
-------------------------------------------------------------------
Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com
- use ext2 on panda
-------------------------------------------------------------------
Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com
- use ttyO2 as default console= on OMAP boards
-------------------------------------------------------------------
Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com
- add u8500_href and origen configs
-------------------------------------------------------------------
Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com
- fix lint failures
-------------------------------------------------------------------
Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com
- don't install map
-------------------------------------------------------------------
Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com
- generalize spec file to be able to build for more boards
- add beagle board spec file
- remove boot.scr
-------------------------------------------------------------------
Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com
- rename to u-boot-omap4panda
-------------------------------------------------------------------
Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de
- new package based on u-boot-omap4panda but use linaro u-boot git
repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git)
instead of mainline u-boot. This package also contains the MLO
(this package obsoletes the x-loader package)
-------------------------------------------------------------------
Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org
- COPYING CREDITS README are now in the standard package
-------------------------------------------------------------------
Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org
- Corrected the links
-------------------------------------------------------------------
Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org
- Build without u-boot tools as we have a u-boot-tools packages
-------------------------------------------------------------------
Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org
- Cleaned the spec file up the spec file
- The name is the same as the package name
-------------------------------------------------------------------
Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org
- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot
- Using .txt config file instead of .scr it's gerated via mkimage
-------------------------------------------------------------------
Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org
- Used scr file based on http://elinux.org definition
- Build u-boot 20111109
- Used the Meego panda u-boot as a base
-------------------------------------------------------------------
Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com>
- 2010.09-MeeGo
- Fix for u-boot fails to compile on armv7hl, BMC#13140
-------------------------------------------------------------------
Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
- 2010.09-MeeGo
- Don't build against i586, BMC#10159
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09-MeeGo
- Add Das u-boot package - FEA#9723
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Added option to enable boot.scr generation and copy
-------------------------------------------------------------------
Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09
-------------------------------------------------------------------
Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09.rc1
- MeeGo customization
- Enabled PandaBoard, Beagleboard build
-------------------------------------------------------------------
Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
- 2009.11.1-1mamba
- update to 2009.11.1
-------------------------------------------------------------------

137
u-boot-a13-olinuxinom.spec Normal file
View File

@ -0,0 +1,137 @@
#
# spec file for package u-boot-a13-olinuxinom
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define x_loader 0
%define origen_spl 0
%define sunxi_spl 1
%define arndale_spl 0
%define cuboxi_spl 0
Name: u-boot-a13-olinuxinom
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the a13-olinuxinom 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
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
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc
BuildRequires: dtc >= 1.4.0
Provides: u-boot-loader
Conflicts: otherproviders(u-boot-loader)
%if %x_loader == 1
Obsoletes: x-loader-a13-olinuxinom
Provides: x-loader-a13-olinuxinom
%endif
ExclusiveArch: armv7l armv7hl
%description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a13-olinuxinom arm platform.
%package doc
Summary: Documentation for the u-boot Firmware
Group: Documentation/Other
%description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware
%prep
%setup -q -n u-boot-%{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
%patch1
%patch2 -p1
%patch3
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1
%endif
%patch99 -p1
%build
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" A13-OLinuXinoM_defconfig
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
%if "%{name}" == "u-boot-snow"
# Chromebook ARM (snow) need a uImage format
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
%endif
%install
# Some times u-boot needs a dtb to configure itself appended to the binary.
# In that case prefer the one with a working dtb already appended.
if [ -f u-boot-dtb-tegra.bin ]; then
install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}/boot/u-boot.img
elif [ -f u-boot-dtb.img ]; then
install -D -m 0644 u-boot-dtb.img %{buildroot}/boot/u-boot.img
else
install -D -m 0644 u-boot.img %{buildroot}/boot/u-boot.img
fi
%if %x_loader == 1
install -D -m 0755 MLO %{buildroot}/boot/MLO
%endif
%if %origen_spl == 1
install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
%endif
%if %arndale_spl == 1
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif
%if %sunxi_spl == 1
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
%endif
%if %cuboxi_spl == 1
install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
%endif
%files
%defattr(-,root,root)
/boot/*
%doc Licenses/gpl-2.0.txt README
%files doc
%defattr(-,root,root)
# Generic documents
%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem
# Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation
%doc doc/README.ARM-memory-map
%changelog

View File

@ -0,0 +1,729 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org
- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI)
-------------------------------------------------------------------
Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc5
-------------------------------------------------------------------
Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc4
-------------------------------------------------------------------
Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org
- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
to fix keyboard on Chromebook
-------------------------------------------------------------------
Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc3
- update patch: drop-marvell.patch
-------------------------------------------------------------------
Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org
- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3
-------------------------------------------------------------------
Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org
- Remove unneeded fix_snow_config.patch
-------------------------------------------------------------------
Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org
- Add rpi2 armv7 board
-------------------------------------------------------------------
Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc2
-------------------------------------------------------------------
Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc1
* Remove upstreamed patch pcm051-bootscr.patch
* Remove no more used patch fix_bootpart_snow_only.patch (now u-boot
scan all known partitions, so no need to set a different boot partition)
-------------------------------------------------------------------
Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com
- Enable pcm051rev3 for Phytec Wega board
* Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1)
-------------------------------------------------------------------
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
- Backport SPL MMC raw boot mode fix:
* 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
-------------------------------------------------------------------
Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com
- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org
- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in
-------------------------------------------------------------------
Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc3
* Drop upstreamed/unneeded patches:
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
- boot_mode_fallback.patch
- fix_snow_usb_support
- fix_spl_ext.patch
- fix_arm_hf_toolchain.patch
- origen-ext2.patch
* Update patch:
- fix_snow_config.patch
* Follow upstream: rpi_b config renamed to rpi
-------------------------------------------------------------------
Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org
- Update snow (chromebook)
* Update patch:
- fix_snow_config.patch patch
* Add patches:
- add_snow_usb_boot.patch to be able to boot from USB0
- fix_bootpart_snow_only.patch to boot on partition #2 (snow only!)
* Backport patches:
- fix_snow_usb_support.patch to fix USB on snow
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
* Drop unneeded/obsolete patches:
- fix_exynos5_text_base.patch
- fix_snow_extra_env_settings.patch
-------------------------------------------------------------------
Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org
- Add Bananapi initial support
-------------------------------------------------------------------
Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc2
- Update patch fix_omap_boot_mode.patch to be upstreamable and
rename it to boot_mode_fallback.patch
- Drop obsolete patch: arndale.patch
- Add patches:
* fix_arm_hf_toolchain.patch: fix build with hard float toolchain
* fix_spl_ext.patch: fix SPL EXT error checks
* fix_sata.patch: fix sata support and fix also mx53loco build
-------------------------------------------------------------------
Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org
- Fix mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net
- Add u-boot-with-sunxi-spl.bin for sunxi boards
-------------------------------------------------------------------
Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org
- Make use of RPM_OPT_FLAGS during make
-------------------------------------------------------------------
Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org
- Fix sunxi boards (use u-boot.img instead of u-boot.bin)
- Remove duplicated default install line
-------------------------------------------------------------------
Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc1
- Drop upstreamed patches:
* add_spl_extfs_support.patch
* ti_common_initrd_support.patch
- Refresh patch:
* drop-marvell.patch
- Drop CREDITS file from DOC (dropped upstream)
-------------------------------------------------------------------
Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org
- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards
-------------------------------------------------------------------
Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10
- Drop upstreamed patch:
* fix_sabrelite_boot.scr.patch
- Refresh patches:
* arndale.patch
* fix_snow_config.patch
* fix_exynos5_text_base.patch
* exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch)
-------------------------------------------------------------------
Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc3
- Drop upstreamed patches:
* beagle-bootscr.patch
* panda-bootscr.patch
* am335x_evm-bootscr.patch
- Refresh patches:
* fix_sabrelite_boot.scr.patch
* drop-marvell.patch
* add_spl_extfs_support.patch
- Add a new patch to fix omap3beagle spl build:
* fix_beagle_spl_build.patch
-------------------------------------------------------------------
Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org
- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos
since it is not upstreamed), so drop related patches:
* v2014.04-sunxi.patch
* cubox-i-v2014.04-port.patch
* cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc2
- drop upstreamed patch rpi_b-bootscr.patch
- drop fix_spl_build_for_am335x.patch (does build without it)
- Refresh patches:
* drop-marvell.patch
* fix_snow_config.patch
-------------------------------------------------------------------
Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org
- Update SPL EXT fs support:
* For omap boards (beagle and panda), SPL now looks for u-boot.img
as upstream instead of u-boot.bin
* Remove mlo-ext2.patch to make proper patches in
order to ease upstreaming our EXT fs SPL functions
* Add panda-bootscr.patch to fix panda boot (was included in
mlo-ext2.patch)
* Add fix_omap_boot_mode.patch to fix beagle and panda boot mode
(was included in mlo-ext2.patch)
* Add add_spl_extfs_support.patch to get proper SPL EXT fs functions
* Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs
support for TI ARMv7 boards
-------------------------------------------------------------------
Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com
- Update to version 2014.10-rc1 and update patches
-------------------------------------------------------------------
Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org
- Rename rpmlintrc to %{name}-rpmlintrc.
Follow the packaging guidelines.
-------------------------------------------------------------------
Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de
- add u-boot-cubietruck for Cubietruck (Cubieboard 3)
-------------------------------------------------------------------
Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de
- add u-boot-mx6cubox-i for Cubox-i and Hummingboard
* currently conflicts with mlo-ext2 patch for omap4
so only for cubox-i target mlo-ext2.patch is skipped
and cubox-i patches are applied
* patch source: https://github.com/vorlonofportland/u-boot/
cubox-i-v2014.04-port.patch
cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org
- Enhance pre_checkin.sh script to handle arch restrictions
-------------------------------------------------------------------
Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org
- Fix builds :
* 'tools' target is now 'tools-only'
* kermit scripts moved from 'tools/scripts' to 'tools/kermit/'
* Enhanced pre_checkin.sh script to handle uppercases in config name
* Renamed config from cubieboard to Cubieboard
* Renamed config from cubieboard2 to Cubieboard2
* Renamed config from hyundai_a7hd to Hyundai_A7HD
* Renamed config from mele_a1000 to Mele_A1000
-------------------------------------------------------------------
Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org
- Add vexpress_aemv8a board
-------------------------------------------------------------------
Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org
- Update to v2014.04
* Update mlo-ext2.patch
* Update mx53loco-bootscr.patch
* Update origen-ext2.patch
* Dropped v2014.01-sunxi.patch and created
v2014.04-sunxi.patch by diffing u-boot-2014.04 with
u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579
* Update rpi_b-bootscr.patch
* Drop gnuhash.patch (upstreamed)
-------------------------------------------------------------------
Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org
- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board)
-------------------------------------------------------------------
Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org
- add u-boot-snow (for Chromebook ARM)
-------------------------------------------------------------------
Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org
- Fix boot.scr location for beagle and origen
-------------------------------------------------------------------
Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com
- add u-boot-cubieboard2
-------------------------------------------------------------------
Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de
- Drop 0006-ARMV7-hardfp-build-fix.patch:
v2014.01 checks if -msoft-float compiles okay, and
U-Boot is soft-float according to Tom Rini
-------------------------------------------------------------------
Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org
- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with
fix_spl_build_for_am335x.patch to reduce size of am335x SPL
-------------------------------------------------------------------
Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de
- Update to v2014.01
* Manually updated 0006-ARMV7-hardfp-build-fix.patch
* Dropped v2013.10-sunxi.patch and created
v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto
u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b
* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts
* Rebased mlo-ext2.patch:
omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by
ti_common_initrd_support.patch.
am335xevm build is known breaking due to size constraints not
trivially solvable without dropping our patch.
-------------------------------------------------------------------
Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de
- Fix regression in packaging u-boot-dtb-tegra.bin:
There is in fact a u-boot-spl.bin SPL being built,
but it is 0xff-padded as u-boot-spl-pad.bin and then
prepended to u-boot.bin and the .dtb.
u-boot-dtb.bin exists independently as just u-boot.bin and .dtb,
so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin.
-------------------------------------------------------------------
Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com
- The "Tegra SPL" is not an SPL but a differently named u-boot.bin
file. Fix up the generation scripts.
-------------------------------------------------------------------
Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de
- Include Tegra SPL for Colibri T20
-------------------------------------------------------------------
Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com
- switch raspberry to ext2
-------------------------------------------------------------------
Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com
- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de
- rpi_b-bootscr.patch: Change rpi_b to use boot.scr
-------------------------------------------------------------------
Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com
- remove origin flavor
-------------------------------------------------------------------
Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de
- Enable paz00 config (Toshiba AC100)
-------------------------------------------------------------------
Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de
- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris)
- Update u-boot.spec.in copyright and fix typo in comment
-------------------------------------------------------------------
Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com
- prefer u-boot-dtb.bin over u-boot.bin
- simplify files section
-------------------------------------------------------------------
Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com
- mlo-ext2.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com
- Add am335x_evm-bootscr.patch: Add bootscr to AM335x
platform based devices
-------------------------------------------------------------------
Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org
- Remove old unused patches:
* v2013.04-sunxi.patch
* loadaddr-defaults.patch
-------------------------------------------------------------------
Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org
- Add ti_common_initrd_support.patch to enable initrd support for
AM335x boards
-------------------------------------------------------------------
Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org
- Add am335x_evm support which includes: Beagle Bone,
Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK
-------------------------------------------------------------------
Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org
- Add Arndale support
-------------------------------------------------------------------
Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org
- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch
-------------------------------------------------------------------
Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org
- Remove kerneladdr and ramdiskaddr definition in u-boot patches
(now done in JeOS image with u-boot hooks)
- Update patches to current version:
* 0006-ARMV7-hardfp-build-fix.patch
* beagle-bootscr.patch
* mx53loco-bootscr.patch
* mlo-ext2.patch
- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch
- Rename exynos-ext2.patch in origen-ext2.patch
-------------------------------------------------------------------
Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org
- Update to 2013.10
-------------------------------------------------------------------
Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org
- Fix OMAP4 pandaboard EXT2 boot
-------------------------------------------------------------------
Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org
- Fix u-boot.bin and boot.scr place since they are now in boot/ folder.
-------------------------------------------------------------------
Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com
- add support for cubieboard, hyundaia7hd, melea1000
-------------------------------------------------------------------
Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com
- update to 2013.04
* no upstream changelog available
- remove dead u-boot-raspberrypi* (actually called rpib now)
- add rpib variant
-------------------------------------------------------------------
Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org
- add omap3_beagle to targets
-------------------------------------------------------------------
Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com
- remove u8500href subpackage, kernel got dropped
-------------------------------------------------------------------
Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com
- update to 2013.04rc2
- enable bootz support on all boards
-------------------------------------------------------------------
Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com
- fix mlo-ext2.patch to actually use the ext4 infrastructure
-------------------------------------------------------------------
Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com
- update mlo-ext2.patch:
* use the ext4 driver now since ext2 got removed
-------------------------------------------------------------------
Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com
- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch:
* backport upstream sdhc fixes
-------------------------------------------------------------------
Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de
- update to 2012.10:
- refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch,
loadaddr-defaults.patch, mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com
- fix origen by putting the ramdisk higher
-------------------------------------------------------------------
Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com
- remove Marvell sources as they are non-free licensed (bnc#773824)
-------------------------------------------------------------------
Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com
- fix ext2 support for origen
- add origen-spl.bin for origen
-------------------------------------------------------------------
Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com
- merge u-boot-tools
-------------------------------------------------------------------
Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com
- add ext2 support by default in mx53loco
-------------------------------------------------------------------
Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com
- add support for mx53loco
-------------------------------------------------------------------
Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com
- remove u-boot-omap3beagle
-------------------------------------------------------------------
Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com
- bump to 2012.04.01
- fixes bug in cmdline parsing
-------------------------------------------------------------------
Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com
- add calxeda highbank support
-------------------------------------------------------------------
Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com
- autoload boot.scr on beagle, so we can boot again
-------------------------------------------------------------------
Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com
- update to upstream u-boot 2012.04
-> gets rid of linaro fork, only mainline now
-> gets us omap3 MLO support, no more need for x-loader
-> potentially fixes voltage issues on omap4
-------------------------------------------------------------------
Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de
- add SUSE style conflicts to avoid installation of multiple
boot loaders
-------------------------------------------------------------------
Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org
- Included u-boot.spec.in and gen_spec.sh in the spec file
-------------------------------------------------------------------
Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com
- use ext2 on panda
-------------------------------------------------------------------
Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com
- use ttyO2 as default console= on OMAP boards
-------------------------------------------------------------------
Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com
- add u8500_href and origen configs
-------------------------------------------------------------------
Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com
- fix lint failures
-------------------------------------------------------------------
Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com
- don't install map
-------------------------------------------------------------------
Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com
- generalize spec file to be able to build for more boards
- add beagle board spec file
- remove boot.scr
-------------------------------------------------------------------
Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com
- rename to u-boot-omap4panda
-------------------------------------------------------------------
Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de
- new package based on u-boot-omap4panda but use linaro u-boot git
repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git)
instead of mainline u-boot. This package also contains the MLO
(this package obsoletes the x-loader package)
-------------------------------------------------------------------
Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org
- COPYING CREDITS README are now in the standard package
-------------------------------------------------------------------
Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org
- Corrected the links
-------------------------------------------------------------------
Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org
- Build without u-boot tools as we have a u-boot-tools packages
-------------------------------------------------------------------
Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org
- Cleaned the spec file up the spec file
- The name is the same as the package name
-------------------------------------------------------------------
Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org
- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot
- Using .txt config file instead of .scr it's gerated via mkimage
-------------------------------------------------------------------
Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org
- Used scr file based on http://elinux.org definition
- Build u-boot 20111109
- Used the Meego panda u-boot as a base
-------------------------------------------------------------------
Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com>
- 2010.09-MeeGo
- Fix for u-boot fails to compile on armv7hl, BMC#13140
-------------------------------------------------------------------
Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
- 2010.09-MeeGo
- Don't build against i586, BMC#10159
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09-MeeGo
- Add Das u-boot package - FEA#9723
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Added option to enable boot.scr generation and copy
-------------------------------------------------------------------
Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09
-------------------------------------------------------------------
Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09.rc1
- MeeGo customization
- Enabled PandaBoard, Beagleboard build
-------------------------------------------------------------------
Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
- 2009.11.1-1mamba
- update to 2009.11.1
-------------------------------------------------------------------

View File

@ -0,0 +1,137 @@
#
# spec file for package u-boot-a20-olinuxino-lime
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define x_loader 0
%define origen_spl 0
%define sunxi_spl 1
%define arndale_spl 0
%define cuboxi_spl 0
Name: u-boot-a20-olinuxino-lime
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the a20-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
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
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc
BuildRequires: dtc >= 1.4.0
Provides: u-boot-loader
Conflicts: otherproviders(u-boot-loader)
%if %x_loader == 1
Obsoletes: x-loader-a20-olinuxino-lime
Provides: x-loader-a20-olinuxino-lime
%endif
ExclusiveArch: armv7l armv7hl
%description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a20-olinuxino-lime arm platform.
%package doc
Summary: Documentation for the u-boot Firmware
Group: Documentation/Other
%description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware
%prep
%setup -q -n u-boot-%{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
%patch1
%patch2 -p1
%patch3
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1
%endif
%patch99 -p1
%build
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino-Lime_defconfig
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
%if "%{name}" == "u-boot-snow"
# Chromebook ARM (snow) need a uImage format
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
%endif
%install
# Some times u-boot needs a dtb to configure itself appended to the binary.
# In that case prefer the one with a working dtb already appended.
if [ -f u-boot-dtb-tegra.bin ]; then
install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}/boot/u-boot.img
elif [ -f u-boot-dtb.img ]; then
install -D -m 0644 u-boot-dtb.img %{buildroot}/boot/u-boot.img
else
install -D -m 0644 u-boot.img %{buildroot}/boot/u-boot.img
fi
%if %x_loader == 1
install -D -m 0755 MLO %{buildroot}/boot/MLO
%endif
%if %origen_spl == 1
install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
%endif
%if %arndale_spl == 1
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif
%if %sunxi_spl == 1
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
%endif
%if %cuboxi_spl == 1
install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
%endif
%files
%defattr(-,root,root)
/boot/*
%doc Licenses/gpl-2.0.txt README
%files doc
%defattr(-,root,root)
# Generic documents
%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem
# Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation
%doc doc/README.ARM-memory-map
%changelog

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-a20-olinuxino-lime2
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -0,0 +1,729 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org
- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI)
-------------------------------------------------------------------
Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc5
-------------------------------------------------------------------
Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc4
-------------------------------------------------------------------
Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org
- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
to fix keyboard on Chromebook
-------------------------------------------------------------------
Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc3
- update patch: drop-marvell.patch
-------------------------------------------------------------------
Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org
- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3
-------------------------------------------------------------------
Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org
- Remove unneeded fix_snow_config.patch
-------------------------------------------------------------------
Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org
- Add rpi2 armv7 board
-------------------------------------------------------------------
Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc2
-------------------------------------------------------------------
Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc1
* Remove upstreamed patch pcm051-bootscr.patch
* Remove no more used patch fix_bootpart_snow_only.patch (now u-boot
scan all known partitions, so no need to set a different boot partition)
-------------------------------------------------------------------
Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com
- Enable pcm051rev3 for Phytec Wega board
* Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1)
-------------------------------------------------------------------
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
- Backport SPL MMC raw boot mode fix:
* 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
-------------------------------------------------------------------
Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com
- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org
- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in
-------------------------------------------------------------------
Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc3
* Drop upstreamed/unneeded patches:
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
- boot_mode_fallback.patch
- fix_snow_usb_support
- fix_spl_ext.patch
- fix_arm_hf_toolchain.patch
- origen-ext2.patch
* Update patch:
- fix_snow_config.patch
* Follow upstream: rpi_b config renamed to rpi
-------------------------------------------------------------------
Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org
- Update snow (chromebook)
* Update patch:
- fix_snow_config.patch patch
* Add patches:
- add_snow_usb_boot.patch to be able to boot from USB0
- fix_bootpart_snow_only.patch to boot on partition #2 (snow only!)
* Backport patches:
- fix_snow_usb_support.patch to fix USB on snow
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
* Drop unneeded/obsolete patches:
- fix_exynos5_text_base.patch
- fix_snow_extra_env_settings.patch
-------------------------------------------------------------------
Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org
- Add Bananapi initial support
-------------------------------------------------------------------
Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc2
- Update patch fix_omap_boot_mode.patch to be upstreamable and
rename it to boot_mode_fallback.patch
- Drop obsolete patch: arndale.patch
- Add patches:
* fix_arm_hf_toolchain.patch: fix build with hard float toolchain
* fix_spl_ext.patch: fix SPL EXT error checks
* fix_sata.patch: fix sata support and fix also mx53loco build
-------------------------------------------------------------------
Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org
- Fix mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net
- Add u-boot-with-sunxi-spl.bin for sunxi boards
-------------------------------------------------------------------
Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org
- Make use of RPM_OPT_FLAGS during make
-------------------------------------------------------------------
Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org
- Fix sunxi boards (use u-boot.img instead of u-boot.bin)
- Remove duplicated default install line
-------------------------------------------------------------------
Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc1
- Drop upstreamed patches:
* add_spl_extfs_support.patch
* ti_common_initrd_support.patch
- Refresh patch:
* drop-marvell.patch
- Drop CREDITS file from DOC (dropped upstream)
-------------------------------------------------------------------
Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org
- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards
-------------------------------------------------------------------
Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10
- Drop upstreamed patch:
* fix_sabrelite_boot.scr.patch
- Refresh patches:
* arndale.patch
* fix_snow_config.patch
* fix_exynos5_text_base.patch
* exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch)
-------------------------------------------------------------------
Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc3
- Drop upstreamed patches:
* beagle-bootscr.patch
* panda-bootscr.patch
* am335x_evm-bootscr.patch
- Refresh patches:
* fix_sabrelite_boot.scr.patch
* drop-marvell.patch
* add_spl_extfs_support.patch
- Add a new patch to fix omap3beagle spl build:
* fix_beagle_spl_build.patch
-------------------------------------------------------------------
Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org
- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos
since it is not upstreamed), so drop related patches:
* v2014.04-sunxi.patch
* cubox-i-v2014.04-port.patch
* cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc2
- drop upstreamed patch rpi_b-bootscr.patch
- drop fix_spl_build_for_am335x.patch (does build without it)
- Refresh patches:
* drop-marvell.patch
* fix_snow_config.patch
-------------------------------------------------------------------
Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org
- Update SPL EXT fs support:
* For omap boards (beagle and panda), SPL now looks for u-boot.img
as upstream instead of u-boot.bin
* Remove mlo-ext2.patch to make proper patches in
order to ease upstreaming our EXT fs SPL functions
* Add panda-bootscr.patch to fix panda boot (was included in
mlo-ext2.patch)
* Add fix_omap_boot_mode.patch to fix beagle and panda boot mode
(was included in mlo-ext2.patch)
* Add add_spl_extfs_support.patch to get proper SPL EXT fs functions
* Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs
support for TI ARMv7 boards
-------------------------------------------------------------------
Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com
- Update to version 2014.10-rc1 and update patches
-------------------------------------------------------------------
Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org
- Rename rpmlintrc to %{name}-rpmlintrc.
Follow the packaging guidelines.
-------------------------------------------------------------------
Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de
- add u-boot-cubietruck for Cubietruck (Cubieboard 3)
-------------------------------------------------------------------
Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de
- add u-boot-mx6cubox-i for Cubox-i and Hummingboard
* currently conflicts with mlo-ext2 patch for omap4
so only for cubox-i target mlo-ext2.patch is skipped
and cubox-i patches are applied
* patch source: https://github.com/vorlonofportland/u-boot/
cubox-i-v2014.04-port.patch
cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org
- Enhance pre_checkin.sh script to handle arch restrictions
-------------------------------------------------------------------
Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org
- Fix builds :
* 'tools' target is now 'tools-only'
* kermit scripts moved from 'tools/scripts' to 'tools/kermit/'
* Enhanced pre_checkin.sh script to handle uppercases in config name
* Renamed config from cubieboard to Cubieboard
* Renamed config from cubieboard2 to Cubieboard2
* Renamed config from hyundai_a7hd to Hyundai_A7HD
* Renamed config from mele_a1000 to Mele_A1000
-------------------------------------------------------------------
Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org
- Add vexpress_aemv8a board
-------------------------------------------------------------------
Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org
- Update to v2014.04
* Update mlo-ext2.patch
* Update mx53loco-bootscr.patch
* Update origen-ext2.patch
* Dropped v2014.01-sunxi.patch and created
v2014.04-sunxi.patch by diffing u-boot-2014.04 with
u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579
* Update rpi_b-bootscr.patch
* Drop gnuhash.patch (upstreamed)
-------------------------------------------------------------------
Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org
- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board)
-------------------------------------------------------------------
Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org
- add u-boot-snow (for Chromebook ARM)
-------------------------------------------------------------------
Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org
- Fix boot.scr location for beagle and origen
-------------------------------------------------------------------
Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com
- add u-boot-cubieboard2
-------------------------------------------------------------------
Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de
- Drop 0006-ARMV7-hardfp-build-fix.patch:
v2014.01 checks if -msoft-float compiles okay, and
U-Boot is soft-float according to Tom Rini
-------------------------------------------------------------------
Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org
- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with
fix_spl_build_for_am335x.patch to reduce size of am335x SPL
-------------------------------------------------------------------
Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de
- Update to v2014.01
* Manually updated 0006-ARMV7-hardfp-build-fix.patch
* Dropped v2013.10-sunxi.patch and created
v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto
u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b
* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts
* Rebased mlo-ext2.patch:
omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by
ti_common_initrd_support.patch.
am335xevm build is known breaking due to size constraints not
trivially solvable without dropping our patch.
-------------------------------------------------------------------
Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de
- Fix regression in packaging u-boot-dtb-tegra.bin:
There is in fact a u-boot-spl.bin SPL being built,
but it is 0xff-padded as u-boot-spl-pad.bin and then
prepended to u-boot.bin and the .dtb.
u-boot-dtb.bin exists independently as just u-boot.bin and .dtb,
so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin.
-------------------------------------------------------------------
Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com
- The "Tegra SPL" is not an SPL but a differently named u-boot.bin
file. Fix up the generation scripts.
-------------------------------------------------------------------
Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de
- Include Tegra SPL for Colibri T20
-------------------------------------------------------------------
Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com
- switch raspberry to ext2
-------------------------------------------------------------------
Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com
- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de
- rpi_b-bootscr.patch: Change rpi_b to use boot.scr
-------------------------------------------------------------------
Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com
- remove origin flavor
-------------------------------------------------------------------
Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de
- Enable paz00 config (Toshiba AC100)
-------------------------------------------------------------------
Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de
- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris)
- Update u-boot.spec.in copyright and fix typo in comment
-------------------------------------------------------------------
Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com
- prefer u-boot-dtb.bin over u-boot.bin
- simplify files section
-------------------------------------------------------------------
Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com
- mlo-ext2.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com
- Add am335x_evm-bootscr.patch: Add bootscr to AM335x
platform based devices
-------------------------------------------------------------------
Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org
- Remove old unused patches:
* v2013.04-sunxi.patch
* loadaddr-defaults.patch
-------------------------------------------------------------------
Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org
- Add ti_common_initrd_support.patch to enable initrd support for
AM335x boards
-------------------------------------------------------------------
Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org
- Add am335x_evm support which includes: Beagle Bone,
Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK
-------------------------------------------------------------------
Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org
- Add Arndale support
-------------------------------------------------------------------
Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org
- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch
-------------------------------------------------------------------
Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org
- Remove kerneladdr and ramdiskaddr definition in u-boot patches
(now done in JeOS image with u-boot hooks)
- Update patches to current version:
* 0006-ARMV7-hardfp-build-fix.patch
* beagle-bootscr.patch
* mx53loco-bootscr.patch
* mlo-ext2.patch
- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch
- Rename exynos-ext2.patch in origen-ext2.patch
-------------------------------------------------------------------
Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org
- Update to 2013.10
-------------------------------------------------------------------
Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org
- Fix OMAP4 pandaboard EXT2 boot
-------------------------------------------------------------------
Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org
- Fix u-boot.bin and boot.scr place since they are now in boot/ folder.
-------------------------------------------------------------------
Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com
- add support for cubieboard, hyundaia7hd, melea1000
-------------------------------------------------------------------
Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com
- update to 2013.04
* no upstream changelog available
- remove dead u-boot-raspberrypi* (actually called rpib now)
- add rpib variant
-------------------------------------------------------------------
Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org
- add omap3_beagle to targets
-------------------------------------------------------------------
Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com
- remove u8500href subpackage, kernel got dropped
-------------------------------------------------------------------
Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com
- update to 2013.04rc2
- enable bootz support on all boards
-------------------------------------------------------------------
Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com
- fix mlo-ext2.patch to actually use the ext4 infrastructure
-------------------------------------------------------------------
Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com
- update mlo-ext2.patch:
* use the ext4 driver now since ext2 got removed
-------------------------------------------------------------------
Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com
- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch:
* backport upstream sdhc fixes
-------------------------------------------------------------------
Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de
- update to 2012.10:
- refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch,
loadaddr-defaults.patch, mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com
- fix origen by putting the ramdisk higher
-------------------------------------------------------------------
Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com
- remove Marvell sources as they are non-free licensed (bnc#773824)
-------------------------------------------------------------------
Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com
- fix ext2 support for origen
- add origen-spl.bin for origen
-------------------------------------------------------------------
Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com
- merge u-boot-tools
-------------------------------------------------------------------
Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com
- add ext2 support by default in mx53loco
-------------------------------------------------------------------
Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com
- add support for mx53loco
-------------------------------------------------------------------
Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com
- remove u-boot-omap3beagle
-------------------------------------------------------------------
Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com
- bump to 2012.04.01
- fixes bug in cmdline parsing
-------------------------------------------------------------------
Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com
- add calxeda highbank support
-------------------------------------------------------------------
Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com
- autoload boot.scr on beagle, so we can boot again
-------------------------------------------------------------------
Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com
- update to upstream u-boot 2012.04
-> gets rid of linaro fork, only mainline now
-> gets us omap3 MLO support, no more need for x-loader
-> potentially fixes voltage issues on omap4
-------------------------------------------------------------------
Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de
- add SUSE style conflicts to avoid installation of multiple
boot loaders
-------------------------------------------------------------------
Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org
- Included u-boot.spec.in and gen_spec.sh in the spec file
-------------------------------------------------------------------
Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com
- use ext2 on panda
-------------------------------------------------------------------
Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com
- use ttyO2 as default console= on OMAP boards
-------------------------------------------------------------------
Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com
- add u8500_href and origen configs
-------------------------------------------------------------------
Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com
- fix lint failures
-------------------------------------------------------------------
Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com
- don't install map
-------------------------------------------------------------------
Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com
- generalize spec file to be able to build for more boards
- add beagle board spec file
- remove boot.scr
-------------------------------------------------------------------
Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com
- rename to u-boot-omap4panda
-------------------------------------------------------------------
Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de
- new package based on u-boot-omap4panda but use linaro u-boot git
repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git)
instead of mainline u-boot. This package also contains the MLO
(this package obsoletes the x-loader package)
-------------------------------------------------------------------
Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org
- COPYING CREDITS README are now in the standard package
-------------------------------------------------------------------
Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org
- Corrected the links
-------------------------------------------------------------------
Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org
- Build without u-boot tools as we have a u-boot-tools packages
-------------------------------------------------------------------
Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org
- Cleaned the spec file up the spec file
- The name is the same as the package name
-------------------------------------------------------------------
Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org
- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot
- Using .txt config file instead of .scr it's gerated via mkimage
-------------------------------------------------------------------
Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org
- Used scr file based on http://elinux.org definition
- Build u-boot 20111109
- Used the Meego panda u-boot as a base
-------------------------------------------------------------------
Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com>
- 2010.09-MeeGo
- Fix for u-boot fails to compile on armv7hl, BMC#13140
-------------------------------------------------------------------
Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
- 2010.09-MeeGo
- Don't build against i586, BMC#10159
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09-MeeGo
- Add Das u-boot package - FEA#9723
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Added option to enable boot.scr generation and copy
-------------------------------------------------------------------
Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09
-------------------------------------------------------------------
Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09.rc1
- MeeGo customization
- Enabled PandaBoard, Beagleboard build
-------------------------------------------------------------------
Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
- 2009.11.1-1mamba
- update to 2009.11.1
-------------------------------------------------------------------

View File

@ -0,0 +1,137 @@
#
# spec file for package u-boot-a20-olinuxinomicro
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define x_loader 0
%define origen_spl 0
%define sunxi_spl 1
%define arndale_spl 0
%define cuboxi_spl 0
Name: u-boot-a20-olinuxinomicro
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the a20-olinuxinomicro 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
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
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
Patch99: drop-marvell.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Arndale board need DTC >= 1.4
BuildRequires: bc
BuildRequires: dtc >= 1.4.0
Provides: u-boot-loader
Conflicts: otherproviders(u-boot-loader)
%if %x_loader == 1
Obsoletes: x-loader-a20-olinuxinomicro
Provides: x-loader-a20-olinuxinomicro
%endif
ExclusiveArch: armv7l armv7hl
%description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the a20-olinuxinomicro arm platform.
%package doc
Summary: Documentation for the u-boot Firmware
Group: Documentation/Other
%description doc
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains documentation for u-boot firmware
%prep
%setup -q -n u-boot-%{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
%patch1
%patch2 -p1
%patch3
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1
%endif
%patch99 -p1
%build
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" A20-OLinuXino_MICRO_defconfig
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
%if "%{name}" == "u-boot-snow"
# Chromebook ARM (snow) need a uImage format
export TEXT_START=$(awk '$NF == "_start" { printf "0x"$1 }' System.map)
./tools/mkimage -A arm -O linux -T kernel -C none -a $TEXT_START -e $TEXT_START -n uboot -d u-boot-dtb.bin u-boot.img
%endif
%install
# Some times u-boot needs a dtb to configure itself appended to the binary.
# In that case prefer the one with a working dtb already appended.
if [ -f u-boot-dtb-tegra.bin ]; then
install -D -m 0644 u-boot-dtb-tegra.img %{buildroot}/boot/u-boot.img
elif [ -f u-boot-dtb.img ]; then
install -D -m 0644 u-boot-dtb.img %{buildroot}/boot/u-boot.img
else
install -D -m 0644 u-boot.img %{buildroot}/boot/u-boot.img
fi
%if %x_loader == 1
install -D -m 0755 MLO %{buildroot}/boot/MLO
%endif
%if %origen_spl == 1
install -D -m 0755 spl/origen-spl.bin %{buildroot}/boot/origen-spl.bin
%endif
%if %arndale_spl == 1
install -D -m 0755 spl/arndale-spl.bin %{buildroot}/boot/arndale-spl.bin
install -D -m 0755 %{SOURCE2} %{buildroot}/boot/arndale-bl1.img
%endif
%if %sunxi_spl == 1
install -D -m 0755 spl/sunxi-spl.bin %{buildroot}/boot/sunxi-spl.bin
install -D -m 0755 u-boot-sunxi-with-spl.bin %{buildroot}/boot/u-boot-sunxi-with-spl.bin
%endif
%if %cuboxi_spl == 1
install -D -m 0755 SPL %{buildroot}/boot/cuboxi-spl.bin
%endif
%files
%defattr(-,root,root)
/boot/*
%doc Licenses/gpl-2.0.txt README
%files doc
%defattr(-,root,root)
# Generic documents
%doc doc/README.JFFS2 doc/README.JFFS2_NAND doc/README.commands
%doc doc/README.autoboot doc/README.commands doc/README.console doc/README.dns
%doc doc/README.hwconfig doc/README.nand doc/README.NetConsole doc/README.serial_multi
%doc doc/README.SNTP doc/README.standalone doc/README.update doc/README.usb
%doc doc/README.video doc/README.VLAN doc/README.silent doc/README.POST doc/README.Modem
# Copy some useful kermit scripts as well
%doc tools/kermit/dot.kermrc tools/kermit/flash_param tools/kermit/send_cmd tools/kermit/send_image
# Now any h/w dependent Documentation
%doc doc/README.ARM-memory-map
%changelog

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-am335xevm
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-arndale
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-bananapi
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

729
u-boot-colibrit20.changes Normal file
View File

@ -0,0 +1,729 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org
- Remove u-boot-vexpressaemv8a (dropped upstream and we now use EFI)
-------------------------------------------------------------------
Thu Apr 2 09:13:49 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc5
-------------------------------------------------------------------
Mon Mar 23 08:39:40 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc4
-------------------------------------------------------------------
Wed Mar 4 15:51:55 UTC 2015 - guillaume@opensuse.org
- Add 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
to fix keyboard on Chromebook
-------------------------------------------------------------------
Wed Mar 4 15:46:52 UTC 2015 - guillaume@opensuse.org
- update to 2015.04-rc3
- update patch: drop-marvell.patch
-------------------------------------------------------------------
Thu Feb 26 16:48:35 UTC 2015 - guillaume@opensuse.org
- Update add_snow_usb_boot.patch to boot on USB2 instead of USB3
-------------------------------------------------------------------
Wed Feb 25 15:47:07 UTC 2015 - guillaume@opensuse.org
- Remove unneeded fix_snow_config.patch
-------------------------------------------------------------------
Tue Feb 24 09:48:50 UTC 2015 - guillaume@opensuse.org
- Add rpi2 armv7 board
-------------------------------------------------------------------
Fri Feb 20 12:31:38 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc2
-------------------------------------------------------------------
Fri Feb 20 10:04:14 UTC 2015 - guillaume@opensuse.org
- Update to 2015.04-rc1
* Remove upstreamed patch pcm051-bootscr.patch
* Remove no more used patch fix_bootpart_snow_only.patch (now u-boot
scan all known partitions, so no need to set a different boot partition)
-------------------------------------------------------------------
Sun Jan 25 20:20:46 UTC 2015 - matwey.kornilov@gmail.com
- Enable pcm051rev3 for Phytec Wega board
* Add pcm051-bootscr.patch: add bootscript support (upstreamed in 2015.04-rc1)
-------------------------------------------------------------------
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
- Backport SPL MMC raw boot mode fix:
* 0001-spl-mmc-Fix-raw-boot-mode-related-to-commit.patch
-------------------------------------------------------------------
Sat Dec 13 12:12:41 UTC 2014 - xxxxxmichl@googlemail.com
- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Tue Dec 9 11:23:41 UTC 2014 - guillaume@opensuse.org
- Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in
-------------------------------------------------------------------
Tue Dec 9 09:15:27 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc3
* Drop upstreamed/unneeded patches:
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
- boot_mode_fallback.patch
- fix_snow_usb_support
- fix_spl_ext.patch
- fix_arm_hf_toolchain.patch
- origen-ext2.patch
* Update patch:
- fix_snow_config.patch
* Follow upstream: rpi_b config renamed to rpi
-------------------------------------------------------------------
Tue Dec 2 12:41:55 UTC 2014 - guillaume@opensuse.org
- Update snow (chromebook)
* Update patch:
- fix_snow_config.patch patch
* Add patches:
- add_snow_usb_boot.patch to be able to boot from USB0
- fix_bootpart_snow_only.patch to boot on partition #2 (snow only!)
* Backport patches:
- fix_snow_usb_support.patch to fix USB on snow
- 0001-exynos-Enable-config_distro_defaults.h.patch
- 0002-exynos5-Use-config_distro_bootcmd.h.patch
* Drop unneeded/obsolete patches:
- fix_exynos5_text_base.patch
- fix_snow_extra_env_settings.patch
-------------------------------------------------------------------
Sun Nov 30 13:17:33 UTC 2014 - guillaume@opensuse.org
- Add Bananapi initial support
-------------------------------------------------------------------
Tue Nov 25 08:29:14 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc2
- Update patch fix_omap_boot_mode.patch to be upstreamable and
rename it to boot_mode_fallback.patch
- Drop obsolete patch: arndale.patch
- Add patches:
* fix_arm_hf_toolchain.patch: fix build with hard float toolchain
* fix_spl_ext.patch: fix SPL EXT error checks
* fix_sata.patch: fix sata support and fix also mx53loco build
-------------------------------------------------------------------
Wed Nov 19 21:44:17 CET 2014 - guillaume.gardet@opensuse.org
- Fix mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Nov 17 21:15:50 UTC 2014 - oscar@naiandei.net
- Add u-boot-with-sunxi-spl.bin for sunxi boards
-------------------------------------------------------------------
Mon Nov 17 15:17:56 UTC 2014 - guillaume@opensuse.org
- Make use of RPM_OPT_FLAGS during make
-------------------------------------------------------------------
Sat Nov 15 14:55:06 UTC 2014 - guillaume@opensuse.org
- Fix sunxi boards (use u-boot.img instead of u-boot.bin)
- Remove duplicated default install line
-------------------------------------------------------------------
Tue Nov 11 13:32:36 UTC 2014 - guillaume@opensuse.org
- Update to 2015.01-rc1
- Drop upstreamed patches:
* add_spl_extfs_support.patch
* ti_common_initrd_support.patch
- Refresh patch:
* drop-marvell.patch
- Drop CREDITS file from DOC (dropped upstream)
-------------------------------------------------------------------
Mon Nov 3 10:19:42 UTC 2014 - guillaume@opensuse.org
- Apply fix_omap_boot_mode.patch only for omap3/omap4 boards
-------------------------------------------------------------------
Tue Oct 14 13:22:44 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10
- Drop upstreamed patch:
* fix_sabrelite_boot.scr.patch
- Refresh patches:
* arndale.patch
* fix_snow_config.patch
* fix_exynos5_text_base.patch
* exynos5-dt.h.patch (renamed fix_snow_extra_env_settings.patch)
-------------------------------------------------------------------
Wed Oct 8 07:52:48 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc3
- Drop upstreamed patches:
* beagle-bootscr.patch
* panda-bootscr.patch
* am335x_evm-bootscr.patch
- Refresh patches:
* fix_sabrelite_boot.scr.patch
* drop-marvell.patch
* add_spl_extfs_support.patch
- Add a new patch to fix omap3beagle spl build:
* fix_beagle_spl_build.patch
-------------------------------------------------------------------
Mon Sep 8 13:06:52 UTC 2014 - guillaume@opensuse.org
- Drop Hyundai_a7hd and cubox-i boards (now handle in Contrib repos
since it is not upstreamed), so drop related patches:
* v2014.04-sunxi.patch
* cubox-i-v2014.04-port.patch
* cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Wed Sep 3 12:02:22 UTC 2014 - guillaume@opensuse.org
- Update to version 2014.10-rc2
- drop upstreamed patch rpi_b-bootscr.patch
- drop fix_spl_build_for_am335x.patch (does build without it)
- Refresh patches:
* drop-marvell.patch
* fix_snow_config.patch
-------------------------------------------------------------------
Thu Aug 21 08:50:10 UTC 2014 - guillaume@opensuse.org
- Update SPL EXT fs support:
* For omap boards (beagle and panda), SPL now looks for u-boot.img
as upstream instead of u-boot.bin
* Remove mlo-ext2.patch to make proper patches in
order to ease upstreaming our EXT fs SPL functions
* Add panda-bootscr.patch to fix panda boot (was included in
mlo-ext2.patch)
* Add fix_omap_boot_mode.patch to fix beagle and panda boot mode
(was included in mlo-ext2.patch)
* Add add_spl_extfs_support.patch to get proper SPL EXT fs functions
* Add enable_spl_ext_support_for_ti_armv7.patch to enable SPL EXT fs
support for TI ARMv7 boards
-------------------------------------------------------------------
Tue Aug 19 17:35:22 UTC 2014 - matwey.kornilov@gmail.com
- Update to version 2014.10-rc1 and update patches
-------------------------------------------------------------------
Thu Jul 31 13:59:00 UTC 2014 - dimstar@opensuse.org
- Rename rpmlintrc to %{name}-rpmlintrc.
Follow the packaging guidelines.
-------------------------------------------------------------------
Sat Jun 14 11:58:43 UTC 2014 - afaerber@suse.de
- add u-boot-cubietruck for Cubietruck (Cubieboard 3)
-------------------------------------------------------------------
Thu Jun 12 18:52:26 UTC 2014 - josua.m@t-online.de
- add u-boot-mx6cubox-i for Cubox-i and Hummingboard
* currently conflicts with mlo-ext2 patch for omap4
so only for cubox-i target mlo-ext2.patch is skipped
and cubox-i patches are applied
* patch source: https://github.com/vorlonofportland/u-boot/
cubox-i-v2014.04-port.patch
cubox-i-enable_raw_rd.patch
-------------------------------------------------------------------
Tue Apr 29 13:41:18 UTC 2014 - guillaume@opensuse.org
- Enhance pre_checkin.sh script to handle arch restrictions
-------------------------------------------------------------------
Tue Apr 29 13:18:48 UTC 2014 - guillaume@opensuse.org
- Fix builds :
* 'tools' target is now 'tools-only'
* kermit scripts moved from 'tools/scripts' to 'tools/kermit/'
* Enhanced pre_checkin.sh script to handle uppercases in config name
* Renamed config from cubieboard to Cubieboard
* Renamed config from cubieboard2 to Cubieboard2
* Renamed config from hyundai_a7hd to Hyundai_A7HD
* Renamed config from mele_a1000 to Mele_A1000
-------------------------------------------------------------------
Tue Apr 29 13:06:57 UTC 2014 - guillaume@opensuse.org
- Add vexpress_aemv8a board
-------------------------------------------------------------------
Tue Apr 29 08:33:48 UTC 2014 - guillaume@opensuse.org
- Update to v2014.04
* Update mlo-ext2.patch
* Update mx53loco-bootscr.patch
* Update origen-ext2.patch
* Dropped v2014.01-sunxi.patch and created
v2014.04-sunxi.patch by diffing u-boot-2014.04 with
u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579
* Update rpi_b-bootscr.patch
* Drop gnuhash.patch (upstreamed)
-------------------------------------------------------------------
Thu Mar 27 14:22:23 UTC 2014 - guillaume@opensuse.org
- add u-boot-mx6qsabrelite (for iMX6 Sabre Lite board)
-------------------------------------------------------------------
Wed Feb 5 15:07:30 UTC 2014 - guillaume@opensuse.org
- add u-boot-snow (for Chromebook ARM)
-------------------------------------------------------------------
Wed Feb 5 14:59:29 UTC 2014 - guillaume@opensuse.org
- Fix boot.scr location for beagle and origen
-------------------------------------------------------------------
Thu Jan 30 14:28:34 UTC 2014 - dmueller@suse.com
- add u-boot-cubieboard2
-------------------------------------------------------------------
Thu Jan 30 06:46:45 UTC 2014 - afaerber@suse.de
- Drop 0006-ARMV7-hardfp-build-fix.patch:
v2014.01 checks if -msoft-float compiles okay, and
U-Boot is soft-float according to Tom Rini
-------------------------------------------------------------------
Tue Jan 28 15:29:14 UTC 2014 - guillaume@opensuse.org
- Disable CONFIG_SPL_OS_BOOT for ti armv7 configs with
fix_spl_build_for_am335x.patch to reduce size of am335x SPL
-------------------------------------------------------------------
Sat Jan 26 22:46:44 UTC 2014 - afaerber@suse.de
- Update to v2014.01
* Manually updated 0006-ARMV7-hardfp-build-fix.patch
* Dropped v2013.10-sunxi.patch and created
v2014.01-sunxi.patch by merging u-boot.git v2014.01 onto
u-boot-sunxi.git e4a0232e173577893604b94fc3af7c047570970b
* Added gnuhash.patch to fix .gnu.hash section handling in ldscripts
* Rebased mlo-ext2.patch:
omap4_common.h CONFIG_SUPPORT_RAW_INITRD hunk is now covered by
ti_common_initrd_support.patch.
am335xevm build is known breaking due to size constraints not
trivially solvable without dropping our patch.
-------------------------------------------------------------------
Sun Jan 26 12:14:10 UTC 2014 - afaerber@suse.de
- Fix regression in packaging u-boot-dtb-tegra.bin:
There is in fact a u-boot-spl.bin SPL being built,
but it is 0xff-padded as u-boot-spl-pad.bin and then
prepended to u-boot.bin and the .dtb.
u-boot-dtb.bin exists independently as just u-boot.bin and .dtb,
so give preference to u-boot-dtb-tegra.bin over u-boot-dtb.bin.
-------------------------------------------------------------------
Mon Jan 20 14:05:13 UTC 2014 - agraf@suse.com
- The "Tegra SPL" is not an SPL but a differently named u-boot.bin
file. Fix up the generation scripts.
-------------------------------------------------------------------
Sun Jan 19 00:09:41 UTC 2014 - afaerber@suse.de
- Include Tegra SPL for Colibri T20
-------------------------------------------------------------------
Wed Jan 8 17:26:10 UTC 2014 - agraf@suse.com
- switch raspberry to ext2
-------------------------------------------------------------------
Wed Jan 8 13:41:32 UTC 2014 - matwey.kornilov@gmail.com
- am335x_evm-bootscr.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Wed Jan 8 02:07:44 UTC 2014 - afaerber@suse.de
- rpi_b-bootscr.patch: Change rpi_b to use boot.scr
-------------------------------------------------------------------
Tue Jan 7 16:01:13 UTC 2014 - dmueller@suse.com
- remove origin flavor
-------------------------------------------------------------------
Mon Jan 6 22:57:05 UTC 2014 - afaerber@suse.de
- Enable paz00 config (Toshiba AC100)
-------------------------------------------------------------------
Mon Jan 6 21:34:03 UTC 2014 - afaerber@suse.de
- Enable colibri_t20_iris config (Toradex Colibri-T20 on Iris)
- Update u-boot.spec.in copyright and fix typo in comment
-------------------------------------------------------------------
Sat Jan 4 01:47:50 UTC 2014 - agraf@suse.com
- prefer u-boot-dtb.bin over u-boot.bin
- simplify files section
-------------------------------------------------------------------
Fri Jan 3 16:54:30 UTC 2014 - dmueller@suse.com
- mlo-ext2.patch: Search for files in /boot, not in /boot/boot
-------------------------------------------------------------------
Mon Dec 30 18:37:50 UTC 2013 - matwey.kornilov@gmail.com
- Add am335x_evm-bootscr.patch: Add bootscr to AM335x
platform based devices
-------------------------------------------------------------------
Tue Dec 17 14:33:52 UTC 2013 - guillaume@opensuse.org
- Remove old unused patches:
* v2013.04-sunxi.patch
* loadaddr-defaults.patch
-------------------------------------------------------------------
Tue Dec 17 14:10:51 UTC 2013 - guillaume@opensuse.org
- Add ti_common_initrd_support.patch to enable initrd support for
AM335x boards
-------------------------------------------------------------------
Tue Dec 17 14:03:50 UTC 2013 - guillaume@opensuse.org
- Add am335x_evm support which includes: Beagle Bone,
Beagle Bone Black, TI AM335x EVM, TI AM335x EVM-SK
-------------------------------------------------------------------
Tue Nov 26 13:46:22 UTC 2013 - guillaume@opensuse.org
- Add Arndale support
-------------------------------------------------------------------
Tue Nov 26 13:05:10 UTC 2013 - guillaume@opensuse.org
- Update v2013.04-sunxi.patch to v2013.10-sunxi.patch
-------------------------------------------------------------------
Mon Nov 25 10:05:48 UTC 2013 - guillaume@opensuse.org
- Remove kerneladdr and ramdiskaddr definition in u-boot patches
(now done in JeOS image with u-boot hooks)
- Update patches to current version:
* 0006-ARMV7-hardfp-build-fix.patch
* beagle-bootscr.patch
* mx53loco-bootscr.patch
* mlo-ext2.patch
- Merge fix_omap4_ext2_boot.patch in mlo-ext2.patch
- Rename exynos-ext2.patch in origen-ext2.patch
-------------------------------------------------------------------
Mon Nov 25 09:57:12 UTC 2013 - guillaume@opensuse.org
- Update to 2013.10
-------------------------------------------------------------------
Fri Nov 22 16:25:36 UTC 2013 - guillaume@opensuse.org
- Fix OMAP4 pandaboard EXT2 boot
-------------------------------------------------------------------
Fri Sep 13 11:31:14 UTC 2013 - guillaume@opensuse.org
- Fix u-boot.bin and boot.scr place since they are now in boot/ folder.
-------------------------------------------------------------------
Wed May 1 20:48:30 UTC 2013 - dmueller@suse.com
- add support for cubieboard, hyundaia7hd, melea1000
-------------------------------------------------------------------
Wed May 1 08:18:26 UTC 2013 - dmueller@suse.com
- update to 2013.04
* no upstream changelog available
- remove dead u-boot-raspberrypi* (actually called rpib now)
- add rpib variant
-------------------------------------------------------------------
Thu Apr 11 17:05:58 UTC 2013 - guillaume.gardet@opensuse.org
- add omap3_beagle to targets
-------------------------------------------------------------------
Thu Apr 11 16:05:41 UTC 2013 - dmueller@suse.com
- remove u8500href subpackage, kernel got dropped
-------------------------------------------------------------------
Sun Apr 7 14:32:20 UTC 2013 - agraf@suse.com
- update to 2013.04rc2
- enable bootz support on all boards
-------------------------------------------------------------------
Wed Mar 20 07:21:06 UTC 2013 - agraf@suse.com
- fix mlo-ext2.patch to actually use the ext4 infrastructure
-------------------------------------------------------------------
Sat Jan 26 10:38:07 UTC 2013 - dmueller@suse.com
- update mlo-ext2.patch:
* use the ext4 driver now since ext2 got removed
-------------------------------------------------------------------
Wed Oct 24 22:33:13 UTC 2012 - agraf@suse.com
- add sdhc-1.patch, sdhc-2.patch, sdhc-3.patch:
* backport upstream sdhc fixes
-------------------------------------------------------------------
Wed Oct 24 01:37:36 CEST 2012 - agraf@suse.de
- update to 2012.10:
- refresh patches 0006-ARMV7-hardfp-build-fix.patch, mlo-ext2.patch,
loadaddr-defaults.patch, mx53loco-bootscr.patch
-------------------------------------------------------------------
Mon Oct 22 12:00:22 UTC 2012 - agraf@suse.com
- fix origen by putting the ramdisk higher
-------------------------------------------------------------------
Mon Aug 6 09:39:54 UTC 2012 - dmueller@suse.com
- remove Marvell sources as they are non-free licensed (bnc#773824)
-------------------------------------------------------------------
Thu Jul 26 18:21:44 UTC 2012 - agraf@suse.com
- fix ext2 support for origen
- add origen-spl.bin for origen
-------------------------------------------------------------------
Thu Jul 26 09:47:31 UTC 2012 - dmueller@suse.com
- merge u-boot-tools
-------------------------------------------------------------------
Wed Jul 25 21:05:08 UTC 2012 - agraf@suse.com
- add ext2 support by default in mx53loco
-------------------------------------------------------------------
Tue Jul 24 21:28:59 UTC 2012 - agraf@suse.com
- add support for mx53loco
-------------------------------------------------------------------
Tue Jul 24 11:25:42 UTC 2012 - dmueller@suse.com
- remove u-boot-omap3beagle
-------------------------------------------------------------------
Mon Jul 23 22:34:04 UTC 2012 - agraf@suse.com
- bump to 2012.04.01
- fixes bug in cmdline parsing
-------------------------------------------------------------------
Mon Jul 23 22:26:47 UTC 2012 - agraf@suse.com
- add calxeda highbank support
-------------------------------------------------------------------
Thu Jul 12 12:51:56 UTC 2012 - agraf@suse.com
- autoload boot.scr on beagle, so we can boot again
-------------------------------------------------------------------
Thu Jul 12 08:12:15 UTC 2012 - agraf@suse.com
- update to upstream u-boot 2012.04
-> gets rid of linaro fork, only mainline now
-> gets us omap3 MLO support, no more need for x-loader
-> potentially fixes voltage issues on omap4
-------------------------------------------------------------------
Thu Jun 14 09:04:53 UTC 2012 - adrian@suse.de
- add SUSE style conflicts to avoid installation of multiple
boot loaders
-------------------------------------------------------------------
Tue Apr 17 11:59:55 UTC 2012 - joop.boonen@opensuse.org
- Included u-boot.spec.in and gen_spec.sh in the spec file
-------------------------------------------------------------------
Mon Feb 6 13:25:09 UTC 2012 - agraf@suse.com
- use ext2 on panda
-------------------------------------------------------------------
Tue Dec 20 02:36:05 UTC 2011 - agraf@suse.com
- use ttyO2 as default console= on OMAP boards
-------------------------------------------------------------------
Mon Dec 19 20:21:21 UTC 2011 - agraf@suse.com
- add u8500_href and origen configs
-------------------------------------------------------------------
Fri Dec 16 16:03:01 UTC 2011 - agraf@suse.com
- fix lint failures
-------------------------------------------------------------------
Fri Dec 16 14:46:53 CET 2011 - agraf@suse.com
- don't install map
-------------------------------------------------------------------
Fri Dec 16 02:16:19 UTC 2011 - agraf@suse.com
- generalize spec file to be able to build for more boards
- add beagle board spec file
- remove boot.scr
-------------------------------------------------------------------
Fri Dec 16 01:15:47 UTC 2011 - agraf@suse.com
- rename to u-boot-omap4panda
-------------------------------------------------------------------
Tue Dec 13 17:24:45 UTC 2011 - dkukawka@suse.de
- new package based on u-boot-omap4panda but use linaro u-boot git
repo (http://git.linaro.org/git/boot/u-boot-linaro-stable.git)
instead of mainline u-boot. This package also contains the MLO
(this package obsoletes the x-loader package)
-------------------------------------------------------------------
Tue Nov 29 22:53:44 UTC 2011 - joop.boonen@opensuse.org
- COPYING CREDITS README are now in the standard package
-------------------------------------------------------------------
Thu Nov 24 21:08:58 UTC 2011 - joop.boonen@opensuse.org
- Corrected the links
-------------------------------------------------------------------
Tue Nov 22 17:47:17 UTC 2011 - joop.boonen@opensuse.org
- Build without u-boot tools as we have a u-boot-tools packages
-------------------------------------------------------------------
Sun Nov 20 17:00:43 UTC 2011 - joop.boonen@opensuse.org
- Cleaned the spec file up the spec file
- The name is the same as the package name
-------------------------------------------------------------------
Sun Nov 13 13:13:39 UTC 2011 - joop.boonen@opensuse.org
- Build u-boot according to http://elinux.org/Panda_How_to_MLO_&_u-boot
- Using .txt config file instead of .scr it's gerated via mkimage
-------------------------------------------------------------------
Wed Nov 09 22:55:09 UTC 2011 - joop.boonen@opensuse.org
- Used scr file based on http://elinux.org definition
- Build u-boot 20111109
- Used the Meego panda u-boot as a base
-------------------------------------------------------------------
Fri Feb 18 00:00:00 UTC 2011 - raghuveer.murthy@ti.com>
- 2010.09-MeeGo
- Fix for u-boot fails to compile on armv7hl, BMC#13140
-------------------------------------------------------------------
Thu Nov 18 00:00:00 UTC 2010 - peter.j.zhu@intel.com>
- 2010.09-MeeGo
- Don't build against i586, BMC#10159
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09-MeeGo
- Add Das u-boot package - FEA#9723
-------------------------------------------------------------------
Tue Oct 10 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Added option to enable boot.scr generation and copy
-------------------------------------------------------------------
Mon Oct 04 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09
-------------------------------------------------------------------
Wed Sep 14 00:00:00 UTC 2010 - nm@ti.com>
- 2010.09.rc1-MeeGo
- Update to 2010.09.rc1
- MeeGo customization
- Enabled PandaBoard, Beagleboard build
-------------------------------------------------------------------
Wed Mar 31 00:00:00 UTC 2010 - silvan.calarco@mambasoft.it>
- 2009.11.1-1mamba
- update to 2009.11.1
-------------------------------------------------------------------

View File

@ -1,5 +1,5 @@
#
# spec file for package u-boot-colibrit20iris
# spec file for package u-boot-colibrit20
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
@ -24,21 +24,19 @@
%define arndale_spl 0
%define cuboxi_spl 0
Name: u-boot-colibrit20iris
Version: 2015.04~rc5
Name: u-boot-colibrit20
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the colibrit20iris arm platform
Summary: The u-boot firmware for the colibrit20 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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -50,14 +48,14 @@ BuildRequires: dtc >= 1.4.0
Provides: u-boot-loader
Conflicts: otherproviders(u-boot-loader)
%if %x_loader == 1
Obsoletes: x-loader-colibrit20iris
Provides: x-loader-colibrit20iris
Obsoletes: x-loader-colibrit20
Provides: x-loader-colibrit20
%endif
ExclusiveArch: armv7l armv7hl
%description
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
This package contains the firmware for the colibrit20iris arm platform.
This package contains the firmware for the colibrit20 arm platform.
%package doc
Summary: Documentation for the u-boot Firmware
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1
@ -84,7 +80,7 @@ rm -rf board/Marvell
%patch99 -p1
%build
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" colibri_t20_iris_defconfig
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" colibri_t20_defconfig
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" USE_PRIVATE_LIBGG=yes
%if "%{name}" == "u-boot-snow"
# Chromebook ARM (snow) need a uImage format

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-cubieboard
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-cubieboard2
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-cubietruck
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-highbank
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-melea1000
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-mx53loco
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-mx6qsabrelite
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-omap3beagle
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-omap4panda
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-paz00
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-pcm051rev3
Version: 2015.04~rc5
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the pcm051rev3 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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-rpi
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-rpi2
Version: 2015.04~rc5
Version: 2015.04
Release: 0
Summary: The u-boot firmware for the rpi2 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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -25,20 +25,18 @@
%define cuboxi_spl 0
Name: u-boot-snow
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Apr 16 08:34:11 UTC 2015 - guillaume@opensuse.org
- update to 2015.04
- Remove upstreamed patch:
0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
- Follow upstream board rename colibri_t20_iris => colibri_t20
-------------------------------------------------------------------
Sun Apr 12 19:49:41 UTC 2015 - xxxxxmichl@googlemail.com
- Added support for A13-OLinuXino, A13-OLinuXino-MICRO,
A20-OLinuXino-MICRO and A20-OLinuXino-LIME from
www.olimex.com
-------------------------------------------------------------------
Thu Apr 9 07:56:40 UTC 2015 - guillaume@opensuse.org

View File

@ -19,14 +19,13 @@
Name: u-boot
Version: 2015.04~rc5
Version: 2015.04
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: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}.tar.bz2
Source: ftp://ftp.denx.de/pub/u-boot/u-boot-2015.04-rc5.tar.bz2
Source: ftp://ftp.denx.de/pub/u-boot/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.04-rc5
%setup -q -n u-boot-%{version}
%build
# needed for include/config/auto.conf

View File

@ -25,20 +25,18 @@
%define cuboxi_spl CUBOXI_SPL
Name: u-boot-BOARDNAME
Version: 2015.04~rc5
Version: 2015.04
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.04-rc5.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
Patch10: 0001-Exynos-Clock-Fix-exynos5_get_periph_rate-for-I2C.patch
# Apply add_snow_usb_boot.patch only for snow, otherwise may break other boards
Patch20: add_snow_usb_boot.patch
# Marvell boards support is non-free licensed, and we don't need it (bnc#773824)
@ -68,15 +66,13 @@ 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.04-rc5
%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
%patch1
%patch2 -p1
%patch3
%patch10 -p1
%if "%{name}" == "u-boot-snow"
# Apply some patches only for u-boot-snow to avoid to break other boards
%patch20 -p1