7b56261a82
- Enhance pre_checkin.sh script to handle arch restrictions - 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 - Add vexpress_aemv8a board - 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) - Enhance pre_checkin.sh script to handle arch restrictions - 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 OBS-URL: https://build.opensuse.org/request/show/234407 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=25
62 lines
2.0 KiB
RPMSpec
62 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package u-boot
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2010 Texas Instruments Inc by Nishanth Menon
|
|
# Copyright (c) 2007-2010 by Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: u-boot
|
|
Version: 2014.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: u-boot-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%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:
|
|
mkimage- a tool that creates kernel bootable images for u-boot.
|
|
|
|
|
|
%package tools
|
|
Summary: Tools for the u-boot Firmware
|
|
Group: System/Boot
|
|
|
|
%description tools
|
|
Das U-Boot (or just "U-Boot" for short) is Open Source Firmware for Embedded PowerPC, ARM, MIPS and x86 processors.
|
|
This package contains:
|
|
mkimage- a tool that creates kernel bootable images for u-boot.
|
|
|
|
%prep
|
|
%setup -q -n u-boot-%{version}
|
|
|
|
%build
|
|
make USE_PRIVATE_LIBGG=yes tools-only
|
|
|
|
%install
|
|
install -D -m 0755 tools/mkimage %{buildroot}%{_bindir}/mkimage
|
|
install -D -m 0644 doc/mkimage.1 %{buildroot}%{_mandir}/man1/mkimage.1
|
|
|
|
%files tools
|
|
%defattr(-,root,root)
|
|
%{_bindir}/mkimage
|
|
%{_mandir}/man1/mkimage.1.gz
|
|
|
|
%changelog
|