SHA256
1
0
forked from pool/u-boot
u-boot/u-boot.spec
Dominique Leuenberger 4a8c51668e Accepting request 448523 from Base:System
- Added support for DE0-Nanos-SoC board

- Updated to v2016.11

- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11
  to fix build of Raspberry Pi 1, 2 and 3

- Updated to v2016.11-rc3
- Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2016.11
* Patches dropped:
  0004-efi_loader-Allow-boards-to-implemen.patch
  0005-ARM-bcm283x-Implement-EFI-RTS-reset.patch
  0006-efi_loader-gop-Expose-fb-when-32bpp.patch
  0007-bcm2835-video-Map-frame-buffer-as-3.patch
  0008-bcm2835-Reserve-the-spin-table-in-e.patch
  0009-x86-Move-table-csum-into-separate-h.patch
  0010-x86-Move-smbios-generation-into-arc.patch
  0011-efi_loader-Expose-efi_install_confi.patch
  0012-smbios-Allow-compilation-on-64bit-s.patch
  0013-smbios-Expose-in-efi_loader-as-tabl.patch
  0014-efi_loader-Fix-efi_install_configur.patch
  0015-smbios-Provide-serial-number.patch
  0016-efi_loader-Update-description-of-in.patch
  0017-efi_loader-Fix-memory-map-size-chec.patch
  0018-efi_loader-Fix-crash-on-32-bit-syst.patch
  0019-efi_loader-Move-efi_allocate_pool-i.patch
  0020-efi_loader-Track-size-of-pool-alloc.patch
  0021-efi_loader-Readd-freed-pages-to-mem.patch
  0022-efi_loader-Keep-memory-mapping-sort.patch
  0023-efi_loader-Do-not-leak-memory-when-.patch

OBS-URL: https://build.opensuse.org/request/show/448523
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=83
2017-01-09 10:54:59 +00:00

69 lines
2.3 KiB
RPMSpec

#
# spec file for package u-boot
#
# Copyright (c) 2016 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/
#
# 'archive_version' differs from 'version' for RC version only
%define archive_version 2016.11
Name: u-boot
Version: 2016.11
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-%{archive_version}.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-%{archive_version}
%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