980e20b
%global candidate rc1
cd59145
db63f3b
Name:      uboot-tools
980e20b
Version:   2016.05
980e20b
Release:   0.1%{?candidate:.%{candidate}}%{?dist}
db63f3b
Summary:   U-Boot utilities
5c9ad74
db63f3b
Group:     Development/Tools
db63f3b
License:   GPLv2+ BSD LGPL-2.1+ LGPL-2.0+
db63f3b
URL:       http://www.denx.de/wiki/U-Boot
db63f3b
Source0:   ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}%{?candidate:-%{candidate}}.tar.bz2
db63f3b
Source1:   armv7-boards
980e20b
Source2:   armv8-boards
50452b4
9106389
Patch1:    0001-Copy-gcc5-over-to-compiler-gcc6.h-as-a-beginning-of-.patch
9106389
Patch2:    0004-Add-BOOTENV_INIT_COMMAND-for-commands-that-may-be-ne.patch
9106389
Patch3:    0005-port-utilite-to-distro-generic-boot-commands.patch
980e20b
# Needs a rebase
980e20b
#Patch4:    mvebu-enable-generic-distro-boot-config.patch
c5f597c
c5f597c
BuildRequires:  bc
c5f597c
BuildRequires:  dtc
c5f597c
BuildRequires:  fedora-logos
c5f597c
BuildRequires:  git
c5f597c
BuildRequires:  netpbm-progs
c5f597c
BuildRequires:  openssl-devel
c5f597c
BuildRequires:  SDL-devel
100bc5a
Requires:       dtc
062ad92
5c9ad74
%description
5c9ad74
This package contains a few U-Boot utilities - mkimage for creating boot images
5c9ad74
and fw_printenv/fw_setenv for manipulating the boot environment variables.
5c9ad74
e55ef91
%ifarch aarch64
018a362
%package     -n uboot-images-armv8
018a362
Summary:     u-boot bootloader images for armv8 boards
e55ef91
Requires:    uboot-tools
1ed2cd2
BuildArch:   noarch
e55ef91
018a362
%description -n uboot-images-armv8
e55ef91
u-boot bootloader binaries for the aarch64 vexpress_aemv8a
980e20b
e55ef91
%endif
e55ef91
062ad92
%ifarch %{arm}
07dc9b8
%package     -n uboot-images-armv7
018a362
Summary:     u-boot bootloader images for armv7 boards
ac05fc2
Requires:    uboot-tools
1ed2cd2
BuildArch:   noarch
ac05fc2
07dc9b8
%description -n uboot-images-armv7
07dc9b8
u-boot bootloader binaries for armv7 boards
1b14295
062ad92
%endif
062ad92
5c9ad74
%prep
cd59145
%setup -q -n u-boot-%{version}%{?candidate:-%{candidate}}
e55ef91
9a63218
git init
9a63218
git config --global gc.auto 0
50452b4
git config user.email "noone@example.com" 
50452b4
git config user.name "no one" 
50452b4
git add . 
50452b4
git commit -a -q -m "%{version} baseline" 
50452b4
git am %{patches} 
50452b4
git config --unset user.email 
50452b4
git config --unset user.name 
64a5c15
rm -rf .git
64a5c15
22628c2
%build
062ad92
mkdir builds
e55ef91
# convert fedora logo to bmp for use in u-boot
980e20b
# pngtopnm /usr/share/pixmaps/fedora-logo.png | ppmquant 256 | ppmtobmp -bpp 8 >fedora.bmp
e55ef91
e55ef91
#replace the logos with fedora's
16197a1
#for bmp in tools/logos/*bmp
16197a1
#do
16197a1
#cp fedora.bmp $bmp
16197a1
#done
5c9ad74
e55ef91
%ifarch aarch64
980e20b
for board in $(cat %SOURCE2)
980e20b
do
980e20b
make $(echo $board)_defconfig O=builds/$(echo $board)/
980e20b
make HOSTCC="gcc $RPM_OPT_FLAGS" CROSS_COMPILE="" %{?_smp_mflags} V=1 O=builds/$(echo $board)/
980e20b
done
980e20b
e55ef91
%endif
e55ef91
062ad92
%ifarch %{arm}
1ed2cd2
for board in $(cat %SOURCE1)
1ed2cd2
do
1ed2cd2
make $(echo $board)_defconfig V=1 O=builds/$(echo $board)/
1ed2cd2
make HOSTCC="gcc $RPM_OPT_FLAGS" CROSS_COMPILE="" %{?_smp_mflags} V=1 O=builds/$(echo $board)/
1ed2cd2
done
b28585a
062ad92
%endif
cef7316
1ed2cd2
make HOSTCC="gcc $RPM_OPT_FLAGS" %{?_smp_mflags} CROSS_COMPILE="" defconfig V=1 O=builds/
1ed2cd2
make HOSTCC="gcc $RPM_OPT_FLAGS" %{?_smp_mflags} CROSS_COMPILE="" tools-all V=1 O=builds/
5c9ad74
5c9ad74
%install
5c9ad74
mkdir -p $RPM_BUILD_ROOT%{_bindir}
5c9ad74
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
5e75bee
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
1ed2cd2
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/
47938e1
e55ef91
%ifarch aarch64
980e20b
for board in $(cat %SOURCE2)
980e20b
do
980e20b
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
980e20b
 for file in MLO SPL spl/arndale-spl.bin spl/origen-spl.bin spl/smdkv310-spl.bin u-boot.bin u-boot.dtb u-boot-dtb-tegra.bin u-boot.img u-boot.imx u-boot-nodtb-tegra.bin u-boot-spl.kwb u-boot-sunxi-with-spl.bin
980e20b
 do
980e20b
  if [ -f builds/$(echo $board)/$(echo $file) ]; then
980e20b
    install -p -m 0644 builds/$(echo $board)/$(echo $file) $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
980e20b
  fi
980e20b
 done
980e20b
done
e55ef91
%endif
e55ef91
47938e1
%ifarch %{arm}
1ed2cd2
for board in $(cat %SOURCE1)
4bad927
do
4bad927
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
35c9612
 for file in MLO SPL spl/arndale-spl.bin spl/origen-spl.bin spl/smdkv310-spl.bin u-boot.bin u-boot.dtb u-boot-dtb-tegra.bin u-boot.img u-boot.imx u-boot-nodtb-tegra.bin u-boot-spl.kwb u-boot-sunxi-with-spl.bin
35c9612
 do
35c9612
  if [ -f builds/$(echo $board)/$(echo $file) ]; then
6392274
    install -p -m 0644 builds/$(echo $board)/$(echo $file) $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
35c9612
  fi
35c9612
 done
4bad927
done
ac05fc2
32784ad
# Bit of a hack to remove binaries we don't use as they're large
32784ad
for board in $(cat %SOURCE1)
32784ad
do
32784ad
  if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot-sunxi-with-spl.bin ]; then
32784ad
    rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.*
32784ad
  fi
32784ad
  if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/MLO ]; then
32784ad
    rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.bin
32784ad
  fi
32784ad
  if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/SPL ]; then
32784ad
    rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.bin
32784ad
  fi
32784ad
  if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.imx ]; then
32784ad
    rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.bin
32784ad
  fi
32784ad
done
1ed2cd2
%endif
07dc9b8
980e20b
%ifarch aarch64
980e20b
for board in $(cat %SOURCE2)
980e20b
do
980e20b
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
980e20b
 for file in MLO SPL spl/arndale-spl.bin spl/origen-spl.bin spl/smdkv310-spl.bin u-boot.bin u-boot.dtb u-boot-dtb-tegra.bin u-boot.img u-boot.imx u-boot-nodtb-tegra.bin u-boot-spl.kwb u-boot-sunxi-with-spl.bin
980e20b
 do
980e20b
  if [ -f builds/$(echo $board)/$(echo $file) ]; then
980e20b
    install -p -m 0644 builds/$(echo $board)/$(echo $file) $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
980e20b
  fi
980e20b
 done
980e20b
done
980e20b
%endif
980e20b
1ed2cd2
for tool in bmp_logo dumpimage easylogo/easylogo env/fw_printenv fit_check_sign fit_info gdb/gdbcont gdb/gdbsend gen_eth_addr img2srec mkenvimage mkimage ncb proftool ubsha1 xway-swap-bytes
f5cbc6d
do
1ed2cd2
install -p -m 0755 builds/tools/$tool $RPM_BUILD_ROOT%{_bindir}
f5cbc6d
done
5e75bee
install -p -m 0644 doc/mkimage.1 $RPM_BUILD_ROOT%{_mandir}/man1
5e75bee
1ed2cd2
install -p -m 0755 builds/tools/env/fw_printenv $RPM_BUILD_ROOT%{_bindir}
5c9ad74
( cd $RPM_BUILD_ROOT%{_bindir}; ln -sf fw_printenv fw_setenv )
5c9ad74
5c9ad74
install -p -m 0644 tools/env/fw_env.config $RPM_BUILD_ROOT%{_sysconfdir}
5c9ad74
5c9ad74
5c9ad74
%files
f2cc7bb
%doc README doc/README.imximage doc/README.kwbimage doc/uImage.FIT
1ed2cd2
%{_bindir}/*
5e75bee
%{_mandir}/man1/mkimage.1*
d98e5a7
%dir %{_datadir}/uboot/
5c9ad74
%config(noreplace) %{_sysconfdir}/fw_env.config
e55ef91
e55ef91
%ifarch aarch64
07dc9b8
%files -n uboot-images-armv8
1ed2cd2
%{_datadir}/uboot/*
e55ef91
%endif
e55ef91
062ad92
%ifarch %{arm}
07dc9b8
%files -n uboot-images-armv7
1ed2cd2
%{_datadir}/uboot/*
062ad92
%endif
5c9ad74
5c9ad74
%changelog
980e20b
* Thu Apr 21 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.05-0.1rc1
980e20b
- 2016.05 RC1
980e20b
- Build aarch64 u-boot for HiKey, DragonBoard, PINE64
980e20b
- Build new ARMv7 devices
980e20b
- Temp disable some i.MX6 devices as build broken
980e20b
16197a1
* Tue Apr 19 2016 Dennis Gilmore <dennis@ausil.us> - 2016.03-6
16197a1
- drop using the fedora logos for now rhbz#1328505
16197a1
b8137c1
* Sat Apr  9 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-5
b8137c1
- Add upstream fix for ARMv7 cache issues preventing some devices from booting
b8137c1
50f196a
* Tue Mar 22 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-4
50f196a
- Add a better fix for network issue which caused follow on issues
50f196a
9106389
* Mon Mar 21 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-3
9106389
- Add a work around for ggc6 issue on some ARMv7 devices
9106389
- Add fixes for AllWinner USB and some fixes for OrangePi devices
9106389
9d6210f
* Fri Mar 18 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-2
9d6210f
- Add upstream patches to fix some issues on some AllWinner devices
9d6210f
4d21484
* Mon Mar 14 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-1
4d21484
- Update to 2016.03 GA
4d21484
7a98996
* Sun Mar  6 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-0.4rc3
7a98996
- Minor cleanups and new devices
7a98996
7a98996
* Tue Mar  1 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-0.3rc3
494158a
- Update to 2016.03 RC3
494158a
7d28d6b
* Tue Feb 16 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-0.2rc2
7d28d6b
- Update to 2016.03 RC2
f60ebad
- Enable SolidRun Clearfog
7d28d6b
a77d47a
* Wed Feb  3 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.03-0.1rc1
a77d47a
- Update to 2016.03 RC1
a77d47a
e842916
* Wed Jan 20 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-3
e842916
- Fix PXE boot on Wandboard (rhbz #1299957)
e842916
25b1986
* Tue Jan 19 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-2
25b1986
- Add patch to fix PCI-e on Jetson TK1
25b1986
- Add patch fo serial junk on BeagleBone
25b1986
74e17b6
* Tue Jan 12 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-1
74e17b6
- Update to 2016.01 GA
74e17b6
Peter Robinson 840a5e7
* Sun Jan 10 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.4rc4
Peter Robinson 840a5e7
- Update to 2016.01 RC4
Peter Robinson 840a5e7
f360565
* Tue Dec 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.3rc3
f360565
- Update to 2016.01 RC3
767a48f
- Enable Lamobo_R1
767a48f
b5af79c
* Tue Dec  8 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.2rc2
f360565
- Update to 2016.01 RC2
b5af79c
- Enable Orange Pi (original, mini, PC, plus)
b5af79c
e0c2246
* Tue Nov 17 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.1rc1
e0c2246
- Update to 2016.01 RC1
e0c2246
c196516
* Sat Nov 14 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-3
c196516
- Use upstream Wanboard distro boot patch
c196516
- Add support for BeagleBone Green
c196516
- Add initial support for C.H.I.P.
c196516
- Enable Rockchips: Firefly, Jerry devices
c196516
- Enable Exynos: Peach Pit/Pi, Sprint devices
c196516
c196516
* Tue Nov  3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-2
aa65ef6
- Fix boot on some devices
aa65ef6
9f8349b
* Tue Oct 20 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-1
9f8349b
- Update to 2015.10 GA
9f8349b
- Enable BeagleBoard X-15
9f8349b
- Enable new AllWinner devices
9f8349b
47854d2
* Mon Oct 12 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.4rc5
47854d2
- Update to 2015.10 RC5
47854d2
60a05fe
* Tue Sep 29 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.3rc4
60a05fe
- Update to 2015.10 RC4
60a05fe
60a05fe
* Fri Sep 11 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.2rc3
a0df5a0
- Update to 2015.10 RC3
a0df5a0
8cda6ee
* Tue Aug  4 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.1rc1
8cda6ee
- Update to 2015.10 RC1
8cda6ee
32784ad
* Mon Aug  3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-3
32784ad
- Drop some unused u-boot binaries
32784ad
- Minor cleanups
32784ad
f0dfe5a
* Thu Jul 16 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-2
f0dfe5a
- Disable boot splash on Utilite (cm_fx6)
f0dfe5a
22628c2
* Wed Jul 15 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-1
22628c2
- Update to 2015.07 GA
22628c2
098b0f3
* Thu Jul  2 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.4rc3
098b0f3
- Update to 2015.07rc3
098b0f3
- Some fixes for omap4/am33xx/imx6 devices
098b0f3
db63f3b
* Mon Jun 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.3rc2
db63f3b
- Initial rebase of BBB/panda/wandboard generic distro boot support
db63f3b
1bbe2ff
* Tue Jun 16 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.2rc2
1bbe2ff
- Enable i.MX6 marsboard and warp
1bbe2ff
- Use upstream build fix
1bbe2ff
- Add patch to fix Raspberry Pi timer speed
1bbe2ff
c5f597c
* Tue Jun  9 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.1rc2
c5f597c
- Initial rebase to 2015.07rc2
c5f597c
- Enable mx6cuboxi, 32 bit vexpress
c5f597c
- Update builds for name changes, merges etc
c5f597c
3ae540d
* Wed May 27 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-3
3ae540d
- Enable Zynq microzed, zed and zybo
3ae540d
9b2844f
* Sun May 10 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-2
9b2844f
- Build nyan-big
9b2844f
9f76f72
* Fri Apr 17 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-1
9f76f72
- Update to 2015.04 GA
9f76f72
- Build Raspberry Pi 2 config
9f76f72
Marcin Juszkiewicz d71172b
* Tue Apr 07 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 2015.04-0.6.rc5
Marcin Juszkiewicz d71172b
- Build U-Boot for Juno and Foundation model instead of removed board
Marcin Juszkiewicz d71172b
043a44b
* Thu Apr  2 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-0.5.rc5
043a44b
- Update to 2015.04 rc5
043a44b
1ed2cd2
* Mon Mar 30 2015 Dennis Gilmore <dennis@ausil.us> - 2015.04-0.4.rc4
1ed2cd2
- add patch to fix booting on omap4 devices
1ed2cd2
- refeactor spec file
1ed2cd2
- add all sunxi boards
1ed2cd2
- add odroid and odroid-xu3
1ed2cd2
2cbdff5
* Sat Mar 21 2015 Dennis Gilmore <dennis@ausil.us> - 2015.04-0.3.rc4
2cbdff5
- fix up bbb and wandboard to autoboot again
2cbdff5
163f6f6
* Fri Mar 20 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-0.2.rc4
2cbdff5
- Update to 2015.04 rc4
163f6f6
7a2a318
* Fri Mar  6 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-0.1.rc3
7a2a318
- Update to 2015.04 rc3
0de9b19
- Enable AllWinner: OLinuXino-Lime2 Mele_M3 Bananapro
7a2a318
- Enable i.MX6: novena hummingboard
2e837cc
- Build ext support into omap3 SPL
7a2a318
e79b203
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2015.01-4
e79b203
- Rebuilt for Fedora 23 Change
e79b203
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
e79b203
219d9dd
* Sat Feb 07 2015 Hans de Goede <hdegoede@redhat.com> - 2015.01-3
219d9dd
- fix build with gcc5
219d9dd
f5cbc6d
* Mon Feb 02 2015 Dennis Gilmore <dennis@ausil.us> - 2015.01-2
f5cbc6d
- enable db-mv784mp-gp
f5cbc6d
bf36e6f
* Tue Jan 13 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.01-1
bf36e6f
- update to 2015.01
bf36e6f
bf36e6f
* Fri Dec 12 2014 Dennis Gilmore <dennis@ausil.us> - 2015.01-0.2.rc3
29e947f
- update to 2015.01 rc3
29e947f
f5cbc6d
af73c70
* Wed Nov 26 2014 Dennis Gilmore <dennis@ausil.us> - 2015.01-0.1.rc2
af73c70
- update to 2015.01 rc2
af73c70
b2bcea9
* Tue Nov 11 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-5
b2bcea9
- switch the target used for beaglebone rhbz#1161619
b2bcea9
64a5c15
* Mon Oct 27 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-4
64a5c15
- port panda board to upstreamed geneic boot commands
64a5c15
- append the console line automatically again
64a5c15
4dc247c
* Fri Oct 24 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-3
4dc247c
- scan both the first and second partitions for boot configs on beaglebone
4dc247c
e5b1ecb
* Thu Oct 16 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-2
e5b1ecb
- Add upstream patch to fix Tegra Jetson K1 pci-e (for network)
e5b1ecb
354b25e
* Wed Oct 15 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-1
354b25e
- update to 2014.10 final release
354b25e
4bad927
* Tue Oct 14 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-0.7.rc3
4bad927
- refacter making directories for images
4bad927
- make cm_fx6 image for utilite
4bad927
4b8ad3f
* Wed Oct  8 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.6.rc3
4b8ad3f
- Update to 2014.10 rc3
4b8ad3f
- Add proposed distro patches from Debian
4b8ad3f
- Add BBone with distro support
4b8ad3f
2f89fe5
* Fri Oct  3 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.5.rc2
2f89fe5
- Enable some more AllWinner devices
2f89fe5
85e3a95
* Mon Sep 29 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.4.rc2
85e3a95
- Add generic distro support to RIoT board
85e3a95
- Add patch to stabilise BananaPi network
85e3a95
- Spec cleanups
85e3a95
fc2c24e
* Fri Sep 19 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.3.rc2
fc2c24e
- Add Jetson K1, RIoT Board
fc2c24e
- Minor spec cleanups
50452b4
- use git to apply patches
fc2c24e
b28585a
* Thu Sep 18 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-0.2.rc2
fc2c24e
- Add Cubieboard, Cubieboard2, Banana Pi, Mele_A1000 and Mele_A1000G images
b28585a
cef7316
* Thu Sep 18 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-0.1.rc2
fc2c24e
- Update to 2014.10-rc2
cef7316
2db0019
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.04-7
2db0019
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2db0019
e30987d
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.04-6
e30987d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e30987d
018a362
* Sun Apr 27 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-5
018a362
- fix up aarch64 image package naming
018a362
- drop need for cross compiler to build tools
018a362
3ed96a1
* Sat Apr 26 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-4
3ed96a1
- add hyp support to cubietruck image
3ed96a1
- enables kvm support
3ed96a1
1619496
* Thu Apr 24 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-3
1619496
- add cubietruck u-boot image
1619496
0f9011f
* Wed Apr 23 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-2
0f9011f
- automatically add console line from u-boot environment to bootargs
0f9011f
- when there is no console argument in the extlinux.conf file
0f9011f
07dc9b8
* Mon Apr 21 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-1
07dc9b8
- update to final 2014.04
07dc9b8
- put all images into a single rpm
07dc9b8
- add udoo image
07dc9b8
cc319d5
* Wed Mar 19 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.4.rc2
cc319d5
- apply fixes for panda and beaglebone
cc319d5
f0eb5e4
* Sat Mar 15 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.3.rc2
f0eb5e4
- Add missing header
f0eb5e4
- pull in patches on their way upstream to fix some issues with ti
f0eb5e4
- systems.
f0eb5e4
- refactor beaglebone and pandaboard patches
f0eb5e4
bcb02e5
* Thu Mar 13 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.2.rc2
bcb02e5
- actually apply patches
bcb02e5
3677935
* Wed Mar 12 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.1.rc2
3677935
- update to 2014.04-rc2 
3677935
- add patches to convert some boards to generic distro configs
3677935
47938e1
* Sun Oct 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-3
47938e1
- fix ftbfs for wandboard
47938e1
- use _smp_mflags
47938e1
0605737
* Sat Oct 19 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-2
0605737
- use ext2load for dtb loading
0605737
- cleanup duplicate defines
0605737
2f2829d
* Thu Oct 17 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-1
2f2829d
- update to 2013.10 final
d98e5a7
- refactor where u-boot binaries are stored
2f2829d
cbbbd4a
* Fri Oct 04 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.5.rc4
cbbbd4a
- update to 2013.10-rc4
cbbbd4a
569f10d
* Fri Sep 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.4.rc3
569f10d
- install u-boot.map for trimslice and paz00
569f10d
2880636
* Fri Sep 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.3.rc3
2880636
- install trimslice u-boot correctly
2880636
ac05fc2
* Fri Sep 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.2.rc3
ac05fc2
- enable arndale, paz00, snow, snowball and trimslice builds
ac05fc2
91a96f1
* Thu Sep 19 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.1.rc3
91a96f1
- update to 2013.10-rc3
91a96f1
- disable panda timing patch for now
91a96f1
f2cc7bb
* Mon Sep 02 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.1.rc2
f2cc7bb
- update  to 2013.10-rc2
f2cc7bb
- enable extlinux.conf support on most boards
f2cc7bb
- add distro generic configuration options
f2cc7bb
86207dd
* Sun Sep  1 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2013.07-2
86207dd
- Add patch for Panda ES memory type issue
86207dd
f1ae4c8
* Fri Jul 26 2013 Dennis Gilmore <dennis@ausil.us> - 2013.07-1
f1ae4c8
- update to 2013.07 final 
f1ae4c8
ada8b2f
* Thu Jul 18 2013 Dennis Gilmore <dennis@ausil.us> - 2013.07-0.2.rc3
ada8b2f
- update to 2013.07 rc3
ada8b2f
- set wandboard to use extlinux.conf by default
ada8b2f
d25871e
* Thu Jul 04 2013 Dennis Gilmore <dennis@ausil.us> - 2013.07-0.1.rc2
d25871e
- update beaglebone patches 
d25871e
- update wandboard quad patch
d25871e
- upstream 2013.07-rc2 update
d25871e
1669bbd
* Wed Jun 05 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-5
1669bbd
- add patches to support ext filesystems in exynos and omap SPL's
1669bbd
- drop bringing in arm-boot-config on arm systems
1669bbd
- build a highbank u-boot (intention is to use in qemu)
5e3cb57
- add wandboard quad u-boot
1669bbd
e10f7e4
* Wed May 22 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-4
e10f7e4
- build vexpress image
e10f7e4
- add uEnv.txt files for various supported omap systems
e10f7e4
2fbcb94
* Sat May 18 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-3
2fbcb94
- add uevm, the omap5 based pandaboard
2fbcb94
- Require arm-boot-config on arm arches 
2fbcb94
4e66929
* Mon May 13 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2013.04-2
4e66929
- Add patches for initial support for the Beagle Bone Black
4e66929
1b14295
* Sun Apr 21 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2013.04-1
1b14295
- Update to 2013.04 release
1b14295
- Build i.MX6 Wandboard Dual Lite and Solo Boards
1b14295
f66dd36
* Sun Mar 31 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-0.1.rc1
f66dd36
- update to 2013.04-rc2
f66dd36
d602bf3
* Fri Mar 01 2013 Dennis Gilmore <dennis@ausil.us> - 2013.01.01-1
d602bf3
- update to 2013.01.01 for bug#907139
d602bf3
100bc5a
* Thu Jan 24 2013 Dennis Gilmore <dennis@ausil.us> - 2013.01-1
100bc5a
- update to 2013.01 release
100bc5a
6c6ea2b
* Wed Oct 17 2012 Dennis Gilmore <dennis@ausil.us> - 2012.10-1
1b14295
- update to final 2012.10 release
6c6ea2b
6c6ea2b
* Thu Oct 11 2012 Mauro Carvalho Chehab <mchehab@redhat.com>
6c6ea2b
- Also generate uboot for SMDK310
6c6ea2b
c3faa1b
* Tue Oct 09 2012 Dennis Gilmore <dennis@ausil.us> - 2012.10-0.1.rc3
c3faa1b
- update to 2010.10 rc3
c3faa1b
1258af9
* Fri Aug 24 2012 Dennis Gilmore <dennis@ausil.us> - 2012.01-1
1258af9
- update to 2012.07 release
1258af9
af3cddb
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.07-0.2.rc1
af3cddb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
af3cddb
2bf539b
* Thu Jul 12 2012 Dennis Gilmore <dennis@ausil.us> - 2012.07-0.1.rc1
2bf539b
- update to rc1 of 2012.07 release
2bf539b
edb8205
* Sat Jul 07 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-4
edb8205
- still build the beagleboard image
edb8205
43d7a00
* Sat Jul 07 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-3
43d7a00
- build beaglebone uboot images
43d7a00
0337204
* Mon Jun 25 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-2
0337204
- add patch so the MLO detects fat16 partitions correctly
0337204
afbb74a
* Mon May 07 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-1
afbb74a
- update to 2012.04.01 release
afbb74a
- http://lists.denx.de/pipermail/u-boot/2012-April/123011.html
afbb74a
fe25d07
* Tue Apr 24 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04-1
fe25d07
- update to final 2012.04 release
fe25d07
062ad92
* Thu Apr 19 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04-0.1.rc3
062ad92
- update to 2012.04-rc3
062ad92
- build uboot binaries for beagle, panda and origen boards
062ad92
f406e87
* Thu Mar 08 2012 Dennis Gilmore <dennis@ausil.us> - 2011.12-1
f406e87
- update to 2011.12 release
f406e87
5cd8a9f
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011.03-2
5cd8a9f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5cd8a9f
5e75bee
* Thu Apr 14 2011 Dan Horák <dan[at]danny.cz> - 2011.03-1
5e75bee
- updated to to 2011.03
5e75bee
- build the tool for manipulation with environment only on arm
5e75bee
a9253e3
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010.03-2
a9253e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a9253e3
5c9ad74
* Thu May 27 2010 Dan Horák <dan[at]danny.cz> 2010.03-1
5c9ad74
- updated to to 2010.03
5c9ad74
- applied review feedback - added docs and expanded description
5c9ad74
- pass proper CFLAGS to the compiler
5c9ad74
5c9ad74
* Sat Nov 14 2009 Dan Horák <dan[at]danny.cz> 2009.08-1
5c9ad74
- initial Fedora version