2016-01-10 00:18:40 +00:00
|
|
|
%global candidate rc4
|
2012-09-13 09:07:31 +00:00
|
|
|
|
2015-06-23 00:27:55 +00:00
|
|
|
Name: uboot-tools
|
2015-11-18 22:35:50 +00:00
|
|
|
Version: 2016.01
|
2016-01-10 00:18:40 +00:00
|
|
|
Release: 0.4%{?candidate:.%{candidate}}%{?dist}
|
2015-06-23 00:27:55 +00:00
|
|
|
Summary: U-Boot utilities
|
2010-06-04 14:19:00 +00:00
|
|
|
|
2015-06-23 00:27:55 +00:00
|
|
|
Group: Development/Tools
|
|
|
|
License: GPLv2+ BSD LGPL-2.1+ LGPL-2.0+
|
|
|
|
URL: http://www.denx.de/wiki/U-Boot
|
|
|
|
Source0: ftp://ftp.denx.de/pub/u-boot/u-boot-%{version}%{?candidate:-%{candidate}}.tar.bz2
|
|
|
|
Source1: armv7-boards
|
2014-10-14 05:43:55 +00:00
|
|
|
|
2015-11-18 22:35:50 +00:00
|
|
|
Patch1: 0004-Add-BOOTENV_INIT_COMMAND-for-commands-that-may-be-ne.patch
|
|
|
|
Patch2: 0005-port-utilite-to-distro-generic-boot-commands.patch
|
2015-06-15 18:17:49 +00:00
|
|
|
|
|
|
|
BuildRequires: bc
|
|
|
|
BuildRequires: dtc
|
|
|
|
BuildRequires: fedora-logos
|
|
|
|
BuildRequires: git
|
|
|
|
BuildRequires: netpbm-progs
|
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: SDL-devel
|
2013-01-29 19:39:25 +00:00
|
|
|
Requires: dtc
|
2012-04-20 13:57:11 +00:00
|
|
|
|
2010-06-04 14:19:00 +00:00
|
|
|
%description
|
|
|
|
This package contains a few U-Boot utilities - mkimage for creating boot images
|
|
|
|
and fw_printenv/fw_setenv for manipulating the boot environment variables.
|
|
|
|
|
2014-02-06 15:26:14 +00:00
|
|
|
%ifarch aarch64
|
2014-04-28 05:46:19 +00:00
|
|
|
%package -n uboot-images-armv8
|
|
|
|
Summary: u-boot bootloader images for armv8 boards
|
2014-02-06 15:26:14 +00:00
|
|
|
Requires: uboot-tools
|
2015-03-30 13:08:20 +00:00
|
|
|
BuildArch: noarch
|
2014-02-06 15:26:14 +00:00
|
|
|
|
2014-04-28 05:46:19 +00:00
|
|
|
%description -n uboot-images-armv8
|
2014-02-06 15:26:14 +00:00
|
|
|
u-boot bootloader binaries for the aarch64 vexpress_aemv8a
|
|
|
|
%endif
|
|
|
|
|
2012-04-20 13:57:11 +00:00
|
|
|
%ifarch %{arm}
|
2014-04-21 17:43:34 +00:00
|
|
|
%package -n uboot-images-armv7
|
2014-04-28 05:46:19 +00:00
|
|
|
Summary: u-boot bootloader images for armv7 boards
|
2013-09-20 19:08:47 +00:00
|
|
|
Requires: uboot-tools
|
2015-03-30 13:08:20 +00:00
|
|
|
BuildArch: noarch
|
2013-09-20 19:08:47 +00:00
|
|
|
|
2014-04-21 17:43:34 +00:00
|
|
|
%description -n uboot-images-armv7
|
|
|
|
u-boot bootloader binaries for armv7 boards
|
2013-04-21 14:06:13 +00:00
|
|
|
|
2012-04-20 13:57:11 +00:00
|
|
|
%endif
|
|
|
|
|
2010-06-04 14:19:00 +00:00
|
|
|
%prep
|
2012-09-13 09:07:31 +00:00
|
|
|
%setup -q -n u-boot-%{version}%{?candidate:-%{candidate}}
|
2014-02-06 15:26:14 +00:00
|
|
|
|
2014-10-14 05:43:55 +00:00
|
|
|
git init
|
|
|
|
git config user.email "noone@example.com"
|
|
|
|
git config user.name "no one"
|
|
|
|
git add .
|
|
|
|
git commit -a -q -m "%{version} baseline"
|
|
|
|
git am %{patches} </dev/null
|
|
|
|
git config --unset user.email
|
|
|
|
git config --unset user.name
|
2015-11-18 22:35:50 +00:00
|
|
|
sleep 10
|
2014-10-28 02:47:17 +00:00
|
|
|
rm -rf .git
|
|
|
|
|
2015-07-15 11:01:37 +00:00
|
|
|
%build
|
2012-04-20 13:57:11 +00:00
|
|
|
mkdir builds
|
2014-02-06 15:26:14 +00:00
|
|
|
# convert fedora logo to bmp for use in u-boot
|
|
|
|
pngtopnm /usr/share/pixmaps/fedora-logo.png | ppmquant 256 | ppmtobmp -bpp 8 >fedora.bmp
|
|
|
|
|
|
|
|
#replace the logos with fedora's
|
|
|
|
for bmp in tools/logos/*bmp
|
|
|
|
do
|
|
|
|
cp fedora.bmp $bmp
|
|
|
|
done
|
2010-06-04 14:19:00 +00:00
|
|
|
|
2014-02-06 15:26:14 +00:00
|
|
|
%ifarch aarch64
|
2015-04-07 09:34:15 +00:00
|
|
|
make vexpress_aemv8a_juno_config vexpress_aemv8a_semi_config O=builds/vexpress_aemv8a/
|
2015-03-30 13:08:20 +00:00
|
|
|
make HOSTCC="gcc $RPM_OPT_FLAGS" CROSS_COMPILE="" %{?_smp_mflags} V=1 O=builds/vexpress_aemv8a/
|
2014-02-06 15:26:14 +00:00
|
|
|
%endif
|
|
|
|
|
2012-04-20 13:57:11 +00:00
|
|
|
%ifarch %{arm}
|
2015-03-30 13:08:20 +00:00
|
|
|
for board in $(cat %SOURCE1)
|
|
|
|
do
|
|
|
|
make $(echo $board)_defconfig V=1 O=builds/$(echo $board)/
|
|
|
|
make HOSTCC="gcc $RPM_OPT_FLAGS" CROSS_COMPILE="" %{?_smp_mflags} V=1 O=builds/$(echo $board)/
|
|
|
|
done
|
2014-09-19 00:05:36 +00:00
|
|
|
|
2014-03-13 05:01:26 +00:00
|
|
|
%endif
|
2014-09-18 14:04:47 +00:00
|
|
|
|
2015-03-30 13:08:20 +00:00
|
|
|
make HOSTCC="gcc $RPM_OPT_FLAGS" %{?_smp_mflags} CROSS_COMPILE="" defconfig V=1 O=builds/
|
|
|
|
make HOSTCC="gcc $RPM_OPT_FLAGS" %{?_smp_mflags} CROSS_COMPILE="" tools-all V=1 O=builds/
|
2010-06-04 14:19:00 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
|
2011-04-14 13:23:39 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
|
2015-03-30 13:08:20 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/
|
2013-10-20 20:25:37 +00:00
|
|
|
|
2014-02-06 15:26:14 +00:00
|
|
|
%ifarch aarch64
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/vexpress_aemv8a/
|
|
|
|
|
2015-03-30 13:08:20 +00:00
|
|
|
install -p -m 0644 builds/vexpress_aemv8a/u-boot.bin $RPM_BUILD_ROOT%{_datadir}/uboot/vexpress_aemv8a/
|
2014-02-06 15:26:14 +00:00
|
|
|
%endif
|
|
|
|
|
2013-10-20 20:25:37 +00:00
|
|
|
%ifarch %{arm}
|
2015-03-30 13:08:20 +00:00
|
|
|
for board in $(cat %SOURCE1)
|
2014-10-14 05:06:59 +00:00
|
|
|
do
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
|
2015-03-30 16:15:12 +00:00
|
|
|
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
|
|
|
|
do
|
|
|
|
if [ -f builds/$(echo $board)/$(echo $file) ]; then
|
2015-03-30 18:51:58 +00:00
|
|
|
install -p -m 0644 builds/$(echo $board)/$(echo $file) $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/
|
2015-03-30 16:15:12 +00:00
|
|
|
fi
|
|
|
|
done
|
2014-10-14 05:06:59 +00:00
|
|
|
done
|
2013-09-20 19:08:47 +00:00
|
|
|
|
2015-08-03 10:26:18 +00:00
|
|
|
# Bit of a hack to remove binaries we don't use as they're large
|
|
|
|
for board in $(cat %SOURCE1)
|
|
|
|
do
|
|
|
|
if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot-sunxi-with-spl.bin ]; then
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.*
|
|
|
|
fi
|
|
|
|
if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/MLO ]; then
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.bin
|
|
|
|
fi
|
|
|
|
if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/SPL ]; then
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.bin
|
|
|
|
fi
|
|
|
|
if [ -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.imx ]; then
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_datadir}/uboot/$(echo $board)/u-boot.bin
|
|
|
|
fi
|
|
|
|
done
|
2015-03-30 13:08:20 +00:00
|
|
|
%endif
|
2014-04-21 17:43:34 +00:00
|
|
|
|
2015-03-30 13:08:20 +00:00
|
|
|
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
|
2015-02-06 09:19:13 +00:00
|
|
|
do
|
2015-03-30 13:08:20 +00:00
|
|
|
install -p -m 0755 builds/tools/$tool $RPM_BUILD_ROOT%{_bindir}
|
2015-02-06 09:19:13 +00:00
|
|
|
done
|
2011-04-14 13:23:39 +00:00
|
|
|
install -p -m 0644 doc/mkimage.1 $RPM_BUILD_ROOT%{_mandir}/man1
|
|
|
|
|
2015-03-30 13:08:20 +00:00
|
|
|
install -p -m 0755 builds/tools/env/fw_printenv $RPM_BUILD_ROOT%{_bindir}
|
2010-06-04 14:19:00 +00:00
|
|
|
( cd $RPM_BUILD_ROOT%{_bindir}; ln -sf fw_printenv fw_setenv )
|
|
|
|
|
|
|
|
install -p -m 0644 tools/env/fw_env.config $RPM_BUILD_ROOT%{_sysconfdir}
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
2013-09-03 03:51:03 +00:00
|
|
|
%doc README doc/README.imximage doc/README.kwbimage doc/uImage.FIT
|
2015-03-30 13:08:20 +00:00
|
|
|
%{_bindir}/*
|
2011-04-14 13:23:39 +00:00
|
|
|
%{_mandir}/man1/mkimage.1*
|
2013-10-18 13:27:41 +00:00
|
|
|
%dir %{_datadir}/uboot/
|
2010-06-04 14:19:00 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/fw_env.config
|
2014-02-06 15:26:14 +00:00
|
|
|
|
|
|
|
%ifarch aarch64
|
2014-04-21 17:43:34 +00:00
|
|
|
%files -n uboot-images-armv8
|
2015-03-30 13:08:20 +00:00
|
|
|
%{_datadir}/uboot/*
|
2014-02-06 15:26:14 +00:00
|
|
|
%endif
|
|
|
|
|
2012-04-20 13:57:11 +00:00
|
|
|
%ifarch %{arm}
|
2014-04-21 17:43:34 +00:00
|
|
|
%files -n uboot-images-armv7
|
2015-03-30 13:08:20 +00:00
|
|
|
%{_datadir}/uboot/*
|
2012-04-20 13:57:11 +00:00
|
|
|
%endif
|
2010-06-04 14:19:00 +00:00
|
|
|
|
|
|
|
%changelog
|
2016-01-10 00:18:40 +00:00
|
|
|
* Sun Jan 10 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.4rc4
|
|
|
|
- Update to 2016.01 RC4
|
|
|
|
|
2015-12-22 14:47:28 +00:00
|
|
|
* Tue Dec 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.3rc3
|
|
|
|
- Update to 2016.01 RC3
|
2015-12-12 03:55:00 +00:00
|
|
|
- Enable Lamobo_R1
|
|
|
|
|
2015-12-08 00:54:30 +00:00
|
|
|
* Tue Dec 8 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.2rc2
|
2015-12-22 14:47:28 +00:00
|
|
|
- Update to 2016.01 RC2
|
2015-12-08 00:54:30 +00:00
|
|
|
- Enable Orange Pi (original, mini, PC, plus)
|
|
|
|
|
2015-11-18 22:35:50 +00:00
|
|
|
* Tue Nov 17 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2016.01-0.1rc1
|
|
|
|
- Update to 2016.01 RC1
|
|
|
|
|
2015-11-16 12:42:37 +00:00
|
|
|
* Sat Nov 14 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-3
|
|
|
|
- Use upstream Wanboard distro boot patch
|
|
|
|
- Add support for BeagleBone Green
|
|
|
|
- Add initial support for C.H.I.P.
|
|
|
|
- Enable Rockchips: Firefly, Jerry devices
|
|
|
|
- Enable Exynos: Peach Pit/Pi, Sprint devices
|
|
|
|
|
|
|
|
* Tue Nov 3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-2
|
2015-11-03 12:53:23 +00:00
|
|
|
- Fix boot on some devices
|
|
|
|
|
2015-10-21 13:14:20 +00:00
|
|
|
* Tue Oct 20 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-1
|
|
|
|
- Update to 2015.10 GA
|
|
|
|
- Enable BeagleBoard X-15
|
|
|
|
- Enable new AllWinner devices
|
|
|
|
|
2015-10-13 00:15:24 +00:00
|
|
|
* Mon Oct 12 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.4rc5
|
|
|
|
- Update to 2015.10 RC5
|
|
|
|
|
2015-09-29 06:53:51 +00:00
|
|
|
* Tue Sep 29 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.3rc4
|
|
|
|
- Update to 2015.10 RC4
|
|
|
|
|
|
|
|
* Fri Sep 11 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.2rc3
|
2015-09-11 12:28:56 +00:00
|
|
|
- Update to 2015.10 RC3
|
|
|
|
|
2015-08-04 08:40:44 +00:00
|
|
|
* Tue Aug 4 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.10-0.1rc1
|
|
|
|
- Update to 2015.10 RC1
|
|
|
|
|
2015-08-03 10:26:18 +00:00
|
|
|
* Mon Aug 3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-3
|
|
|
|
- Drop some unused u-boot binaries
|
|
|
|
- Minor cleanups
|
|
|
|
|
2015-07-16 16:10:21 +00:00
|
|
|
* Thu Jul 16 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-2
|
|
|
|
- Disable boot splash on Utilite (cm_fx6)
|
|
|
|
|
2015-07-15 11:01:37 +00:00
|
|
|
* Wed Jul 15 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-1
|
|
|
|
- Update to 2015.07 GA
|
|
|
|
|
2015-07-03 00:47:57 +00:00
|
|
|
* Thu Jul 2 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.4rc3
|
|
|
|
- Update to 2015.07rc3
|
|
|
|
- Some fixes for omap4/am33xx/imx6 devices
|
|
|
|
|
2015-06-23 00:27:55 +00:00
|
|
|
* Mon Jun 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.3rc2
|
|
|
|
- Initial rebase of BBB/panda/wandboard generic distro boot support
|
|
|
|
|
2015-06-18 20:20:51 +00:00
|
|
|
* Tue Jun 16 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.2rc2
|
|
|
|
- Enable i.MX6 marsboard and warp
|
|
|
|
- Use upstream build fix
|
|
|
|
- Add patch to fix Raspberry Pi timer speed
|
|
|
|
|
2015-06-15 18:17:49 +00:00
|
|
|
* Tue Jun 9 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.07-0.1rc2
|
|
|
|
- Initial rebase to 2015.07rc2
|
|
|
|
- Enable mx6cuboxi, 32 bit vexpress
|
|
|
|
- Update builds for name changes, merges etc
|
|
|
|
|
2015-05-27 13:03:38 +00:00
|
|
|
* Wed May 27 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-3
|
|
|
|
- Enable Zynq microzed, zed and zybo
|
|
|
|
|
2015-05-10 18:51:08 +00:00
|
|
|
* Sun May 10 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-2
|
|
|
|
- Build nyan-big
|
|
|
|
|
2015-04-17 13:01:08 +00:00
|
|
|
* Fri Apr 17 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-1
|
|
|
|
- Update to 2015.04 GA
|
|
|
|
- Build Raspberry Pi 2 config
|
|
|
|
|
2015-04-07 09:34:15 +00:00
|
|
|
* Tue Apr 07 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 2015.04-0.6.rc5
|
|
|
|
- Build U-Boot for Juno and Foundation model instead of removed board
|
|
|
|
|
2015-04-02 09:07:04 +00:00
|
|
|
* Thu Apr 2 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-0.5.rc5
|
|
|
|
- Update to 2015.04 rc5
|
|
|
|
|
2015-03-30 13:08:20 +00:00
|
|
|
* Mon Mar 30 2015 Dennis Gilmore <dennis@ausil.us> - 2015.04-0.4.rc4
|
|
|
|
- add patch to fix booting on omap4 devices
|
|
|
|
- refeactor spec file
|
|
|
|
- add all sunxi boards
|
|
|
|
- add odroid and odroid-xu3
|
|
|
|
|
2015-03-21 17:40:21 +00:00
|
|
|
* Sat Mar 21 2015 Dennis Gilmore <dennis@ausil.us> - 2015.04-0.3.rc4
|
|
|
|
- fix up bbb and wandboard to autoboot again
|
|
|
|
|
2015-03-20 16:46:58 +00:00
|
|
|
* Fri Mar 20 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-0.2.rc4
|
2015-03-21 17:40:21 +00:00
|
|
|
- Update to 2015.04 rc4
|
2015-03-20 16:46:58 +00:00
|
|
|
|
2015-03-06 13:05:47 +00:00
|
|
|
* Fri Mar 6 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.04-0.1.rc3
|
|
|
|
- Update to 2015.04 rc3
|
2015-03-06 17:17:18 +00:00
|
|
|
- Enable AllWinner: OLinuXino-Lime2 Mele_M3 Bananapro
|
2015-03-06 13:05:47 +00:00
|
|
|
- Enable i.MX6: novena hummingboard
|
2015-03-06 16:52:50 +00:00
|
|
|
- Build ext support into omap3 SPL
|
2015-03-06 13:05:47 +00:00
|
|
|
|
2015-02-21 21:28:12 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2015.01-4
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2015-02-07 21:51:06 +00:00
|
|
|
* Sat Feb 07 2015 Hans de Goede <hdegoede@redhat.com> - 2015.01-3
|
|
|
|
- fix build with gcc5
|
|
|
|
|
2015-02-06 09:19:13 +00:00
|
|
|
* Mon Feb 02 2015 Dennis Gilmore <dennis@ausil.us> - 2015.01-2
|
|
|
|
- enable db-mv784mp-gp
|
|
|
|
|
2015-01-13 12:49:58 +00:00
|
|
|
* Tue Jan 13 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2015.01-1
|
|
|
|
- update to 2015.01
|
|
|
|
|
|
|
|
* Fri Dec 12 2014 Dennis Gilmore <dennis@ausil.us> - 2015.01-0.2.rc3
|
2014-12-12 17:39:56 +00:00
|
|
|
- update to 2015.01 rc3
|
|
|
|
|
2015-02-06 09:19:13 +00:00
|
|
|
|
2014-11-26 05:16:36 +00:00
|
|
|
* Wed Nov 26 2014 Dennis Gilmore <dennis@ausil.us> - 2015.01-0.1.rc2
|
|
|
|
- update to 2015.01 rc2
|
|
|
|
|
2014-11-11 06:49:00 +00:00
|
|
|
* Tue Nov 11 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-5
|
|
|
|
- switch the target used for beaglebone rhbz#1161619
|
|
|
|
|
2014-10-28 02:47:17 +00:00
|
|
|
* Mon Oct 27 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-4
|
|
|
|
- port panda board to upstreamed geneic boot commands
|
|
|
|
- append the console line automatically again
|
|
|
|
|
2014-10-24 16:04:06 +00:00
|
|
|
* Fri Oct 24 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-3
|
|
|
|
- scan both the first and second partitions for boot configs on beaglebone
|
|
|
|
|
2014-10-16 19:25:48 +00:00
|
|
|
* Thu Oct 16 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-2
|
|
|
|
- Add upstream patch to fix Tegra Jetson K1 pci-e (for network)
|
|
|
|
|
2014-10-15 00:48:49 +00:00
|
|
|
* Wed Oct 15 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-1
|
|
|
|
- update to 2014.10 final release
|
|
|
|
|
2014-10-14 05:06:59 +00:00
|
|
|
* Tue Oct 14 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-0.7.rc3
|
|
|
|
- refacter making directories for images
|
|
|
|
- make cm_fx6 image for utilite
|
|
|
|
|
2014-10-08 15:35:09 +00:00
|
|
|
* Wed Oct 8 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.6.rc3
|
|
|
|
- Update to 2014.10 rc3
|
|
|
|
- Add proposed distro patches from Debian
|
|
|
|
- Add BBone with distro support
|
|
|
|
|
2014-10-03 14:44:32 +00:00
|
|
|
* Fri Oct 3 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.5.rc2
|
|
|
|
- Enable some more AllWinner devices
|
|
|
|
|
2014-09-29 18:52:00 +00:00
|
|
|
* Mon Sep 29 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.4.rc2
|
|
|
|
- Add generic distro support to RIoT board
|
|
|
|
- Add patch to stabilise BananaPi network
|
|
|
|
- Spec cleanups
|
|
|
|
|
2014-09-19 23:30:16 +00:00
|
|
|
* Fri Sep 19 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2014.10-0.3.rc2
|
|
|
|
- Add Jetson K1, RIoT Board
|
|
|
|
- Minor spec cleanups
|
2014-10-14 05:43:55 +00:00
|
|
|
- use git to apply patches
|
2014-09-19 23:30:16 +00:00
|
|
|
|
2014-09-19 00:05:36 +00:00
|
|
|
* Thu Sep 18 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-0.2.rc2
|
2014-09-19 23:30:16 +00:00
|
|
|
- Add Cubieboard, Cubieboard2, Banana Pi, Mele_A1000 and Mele_A1000G images
|
2014-09-19 00:05:36 +00:00
|
|
|
|
2014-09-18 14:04:47 +00:00
|
|
|
* Thu Sep 18 2014 Dennis Gilmore <dennis@ausil.us> - 2014.10-0.1.rc2
|
2014-09-19 23:30:16 +00:00
|
|
|
- Update to 2014.10-rc2
|
2014-09-18 14:04:47 +00:00
|
|
|
|
2014-08-18 06:38:28 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.04-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-08 02:27:05 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2014.04-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-28 05:46:19 +00:00
|
|
|
* Sun Apr 27 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-5
|
|
|
|
- fix up aarch64 image package naming
|
|
|
|
- drop need for cross compiler to build tools
|
|
|
|
|
2014-04-27 04:38:57 +00:00
|
|
|
* Sat Apr 26 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-4
|
|
|
|
- add hyp support to cubietruck image
|
|
|
|
- enables kvm support
|
|
|
|
|
2014-04-27 02:49:55 +00:00
|
|
|
* Thu Apr 24 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-3
|
|
|
|
- add cubietruck u-boot image
|
|
|
|
|
2014-04-23 21:06:12 +00:00
|
|
|
* Wed Apr 23 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-2
|
|
|
|
- automatically add console line from u-boot environment to bootargs
|
|
|
|
- when there is no console argument in the extlinux.conf file
|
|
|
|
|
2014-04-21 17:43:34 +00:00
|
|
|
* Mon Apr 21 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-1
|
|
|
|
- update to final 2014.04
|
|
|
|
- put all images into a single rpm
|
|
|
|
- add udoo image
|
|
|
|
|
2014-03-19 23:24:36 +00:00
|
|
|
* Wed Mar 19 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.4.rc2
|
|
|
|
- apply fixes for panda and beaglebone
|
|
|
|
|
2014-03-15 15:33:03 +00:00
|
|
|
* Sat Mar 15 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.3.rc2
|
|
|
|
- Add missing header
|
|
|
|
- pull in patches on their way upstream to fix some issues with ti
|
|
|
|
- systems.
|
|
|
|
- refactor beaglebone and pandaboard patches
|
|
|
|
|
2014-03-13 19:12:05 +00:00
|
|
|
* Thu Mar 13 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.2.rc2
|
|
|
|
- actually apply patches
|
|
|
|
|
2014-03-12 19:56:30 +00:00
|
|
|
* Wed Mar 12 2014 Dennis Gilmore <dennis@ausil.us> - 2014.04-0.1.rc2
|
|
|
|
- update to 2014.04-rc2
|
|
|
|
- add patches to convert some boards to generic distro configs
|
|
|
|
|
2013-10-20 20:25:37 +00:00
|
|
|
* Sun Oct 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-3
|
|
|
|
- fix ftbfs for wandboard
|
|
|
|
- use _smp_mflags
|
|
|
|
|
2013-10-19 11:53:27 +00:00
|
|
|
* Sat Oct 19 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-2
|
|
|
|
- use ext2load for dtb loading
|
|
|
|
- cleanup duplicate defines
|
|
|
|
|
2013-10-18 12:29:00 +00:00
|
|
|
* Thu Oct 17 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-1
|
|
|
|
- update to 2013.10 final
|
2013-10-18 13:27:41 +00:00
|
|
|
- refactor where u-boot binaries are stored
|
2013-10-18 12:29:00 +00:00
|
|
|
|
2013-10-04 19:25:35 +00:00
|
|
|
* Fri Oct 04 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.5.rc4
|
|
|
|
- update to 2013.10-rc4
|
|
|
|
|
2013-09-21 02:33:34 +00:00
|
|
|
* Fri Sep 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.4.rc3
|
|
|
|
- install u-boot.map for trimslice and paz00
|
|
|
|
|
2013-09-21 01:07:01 +00:00
|
|
|
* Fri Sep 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.3.rc3
|
|
|
|
- install trimslice u-boot correctly
|
|
|
|
|
2013-09-20 19:08:47 +00:00
|
|
|
* Fri Sep 20 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.2.rc3
|
|
|
|
- enable arndale, paz00, snow, snowball and trimslice builds
|
|
|
|
|
2013-09-19 22:11:28 +00:00
|
|
|
* Thu Sep 19 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.1.rc3
|
|
|
|
- update to 2013.10-rc3
|
|
|
|
- disable panda timing patch for now
|
|
|
|
|
2013-09-03 03:51:03 +00:00
|
|
|
* Mon Sep 02 2013 Dennis Gilmore <dennis@ausil.us> - 2013.10-0.1.rc2
|
|
|
|
- update to 2013.10-rc2
|
|
|
|
- enable extlinux.conf support on most boards
|
|
|
|
- add distro generic configuration options
|
|
|
|
|
2013-09-02 17:57:06 +00:00
|
|
|
* Sun Sep 1 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2013.07-2
|
|
|
|
- Add patch for Panda ES memory type issue
|
|
|
|
|
2013-07-26 23:27:09 +00:00
|
|
|
* Fri Jul 26 2013 Dennis Gilmore <dennis@ausil.us> - 2013.07-1
|
|
|
|
- update to 2013.07 final
|
|
|
|
|
2013-07-18 23:14:14 +00:00
|
|
|
* Thu Jul 18 2013 Dennis Gilmore <dennis@ausil.us> - 2013.07-0.2.rc3
|
|
|
|
- update to 2013.07 rc3
|
|
|
|
- set wandboard to use extlinux.conf by default
|
|
|
|
|
2013-07-04 16:07:43 +00:00
|
|
|
* Thu Jul 04 2013 Dennis Gilmore <dennis@ausil.us> - 2013.07-0.1.rc2
|
|
|
|
- update beaglebone patches
|
|
|
|
- update wandboard quad patch
|
|
|
|
- upstream 2013.07-rc2 update
|
|
|
|
|
2013-06-05 18:50:04 +00:00
|
|
|
* Wed Jun 05 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-5
|
|
|
|
- add patches to support ext filesystems in exynos and omap SPL's
|
|
|
|
- drop bringing in arm-boot-config on arm systems
|
|
|
|
- build a highbank u-boot (intention is to use in qemu)
|
2013-06-14 14:43:10 +00:00
|
|
|
- add wandboard quad u-boot
|
2013-06-05 18:50:04 +00:00
|
|
|
|
2013-05-23 03:29:28 +00:00
|
|
|
* Wed May 22 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-4
|
|
|
|
- build vexpress image
|
|
|
|
- add uEnv.txt files for various supported omap systems
|
|
|
|
|
2013-05-18 15:38:56 +00:00
|
|
|
* Sat May 18 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-3
|
|
|
|
- add uevm, the omap5 based pandaboard
|
|
|
|
- Require arm-boot-config on arm arches
|
|
|
|
|
2013-05-13 19:31:40 +00:00
|
|
|
* Mon May 13 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2013.04-2
|
|
|
|
- Add patches for initial support for the Beagle Bone Black
|
|
|
|
|
2013-04-21 14:06:13 +00:00
|
|
|
* Sun Apr 21 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2013.04-1
|
|
|
|
- Update to 2013.04 release
|
|
|
|
- Build i.MX6 Wandboard Dual Lite and Solo Boards
|
|
|
|
|
2013-04-05 13:41:51 +00:00
|
|
|
* Sun Mar 31 2013 Dennis Gilmore <dennis@ausil.us> - 2013.04-0.1.rc1
|
|
|
|
- update to 2013.04-rc2
|
|
|
|
|
2013-03-01 17:11:26 +00:00
|
|
|
* Fri Mar 01 2013 Dennis Gilmore <dennis@ausil.us> - 2013.01.01-1
|
|
|
|
- update to 2013.01.01 for bug#907139
|
|
|
|
|
2013-01-29 19:39:25 +00:00
|
|
|
* Thu Jan 24 2013 Dennis Gilmore <dennis@ausil.us> - 2013.01-1
|
|
|
|
- update to 2013.01 release
|
|
|
|
|
2012-10-17 21:10:20 +00:00
|
|
|
* Wed Oct 17 2012 Dennis Gilmore <dennis@ausil.us> - 2012.10-1
|
2013-04-21 14:06:13 +00:00
|
|
|
- update to final 2012.10 release
|
2012-10-17 21:10:20 +00:00
|
|
|
|
|
|
|
* Thu Oct 11 2012 Mauro Carvalho Chehab <mchehab@redhat.com>
|
|
|
|
- Also generate uboot for SMDK310
|
|
|
|
|
2012-10-09 21:43:49 +00:00
|
|
|
* Tue Oct 09 2012 Dennis Gilmore <dennis@ausil.us> - 2012.10-0.1.rc3
|
|
|
|
- update to 2010.10 rc3
|
|
|
|
|
2012-08-24 01:12:37 +00:00
|
|
|
* Fri Aug 24 2012 Dennis Gilmore <dennis@ausil.us> - 2012.01-1
|
|
|
|
- update to 2012.07 release
|
|
|
|
|
2012-07-22 01:14:16 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.07-0.2.rc1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-13 02:44:37 +00:00
|
|
|
* Thu Jul 12 2012 Dennis Gilmore <dennis@ausil.us> - 2012.07-0.1.rc1
|
|
|
|
- update to rc1 of 2012.07 release
|
|
|
|
|
2012-07-07 14:19:32 +00:00
|
|
|
* Sat Jul 07 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-4
|
|
|
|
- still build the beagleboard image
|
|
|
|
|
2012-07-07 06:39:31 +00:00
|
|
|
* Sat Jul 07 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-3
|
|
|
|
- build beaglebone uboot images
|
|
|
|
|
2012-06-26 03:48:54 +00:00
|
|
|
* Mon Jun 25 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-2
|
|
|
|
- add patch so the MLO detects fat16 partitions correctly
|
|
|
|
|
2012-05-08 01:59:45 +00:00
|
|
|
* Mon May 07 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04.01-1
|
|
|
|
- update to 2012.04.01 release
|
|
|
|
- http://lists.denx.de/pipermail/u-boot/2012-April/123011.html
|
|
|
|
|
2012-04-24 17:11:13 +00:00
|
|
|
* Tue Apr 24 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04-1
|
|
|
|
- update to final 2012.04 release
|
|
|
|
|
2012-04-20 13:57:11 +00:00
|
|
|
* Thu Apr 19 2012 Dennis Gilmore <dennis@ausil.us> - 2012.04-0.1.rc3
|
|
|
|
- update to 2012.04-rc3
|
|
|
|
- build uboot binaries for beagle, panda and origen boards
|
|
|
|
|
2012-03-08 19:35:48 +00:00
|
|
|
* Thu Mar 08 2012 Dennis Gilmore <dennis@ausil.us> - 2011.12-1
|
|
|
|
- update to 2011.12 release
|
|
|
|
|
2012-01-14 07:23:48 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011.03-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-04-14 13:23:39 +00:00
|
|
|
* Thu Apr 14 2011 Dan Horák <dan[at]danny.cz> - 2011.03-1
|
|
|
|
- updated to to 2011.03
|
|
|
|
- build the tool for manipulation with environment only on arm
|
|
|
|
|
2011-02-07 23:52:46 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010.03-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-06-04 14:19:00 +00:00
|
|
|
* Thu May 27 2010 Dan Horák <dan[at]danny.cz> 2010.03-1
|
|
|
|
- updated to to 2010.03
|
|
|
|
- applied review feedback - added docs and expanded description
|
|
|
|
- pass proper CFLAGS to the compiler
|
|
|
|
|
|
|
|
* Sat Nov 14 2009 Dan Horák <dan[at]danny.cz> 2009.08-1
|
|
|
|
- initial Fedora version
|