forked from pool/u-boot
886f663d28
- Added support for A20-OLinuXIno-LIME2 and A10-OLinuXino-LIME from www.olimex.com - Rename XLOADER to OMAP_SPL in pre_checkin.sh and u-boot.spec.in - 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 - 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 OBS-URL: https://build.opensuse.org/request/show/265381 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=37
68 lines
2.2 KiB
RPMSpec
68 lines
2.2 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: 2015.01~rc3
|
|
Release: 0
|
|
Summary: Tools for the u-boot Firmware
|
|
License: GPL-2.0
|
|
Group: System/Boot
|
|
Url: http://www.denx.de/wiki/U-Boot
|
|
#Source: u-boot-%{version}.tar.bz2
|
|
Source: u-boot-2015.01-rc3.tar.bz2
|
|
BuildRequires: libopenssl-devel
|
|
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}
|
|
%setup -q -n u-boot-2015.01-rc3
|
|
|
|
%build
|
|
# needed for include/config/auto.conf
|
|
make defconfig
|
|
make silentoldconfig
|
|
make %{?jobs:-j %jobs} CFLAGS="$RPM_OPT_FLAGS" 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
|