Your message dated Tue, 03 Nov 2015 10:01:08 +0000
with message-id <[email protected]>
and subject line Bug#803166: fixed in u-boot 2015.10+dfsg1-2~exp1
has caused the Debian Bug report #803166,
regarding u-boot: enable rockchip platforms
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
803166: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803166
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: u-boot
Severity: wishlist
Tags: patch

Hi,

The attached patch creates a rockchip package and enables the
firefly-rk3288 platform. rock2-rk3288 and rock2-sd-rk3288 are
commented out for now as those are not upstreamed yet.

Sjoerd (Cc'ed) is working upstream on this, and has volunteered
to keep this working / test new versions. I will be happy to do
that too, so long as I still have the hardware.

Thanks for considering.

Cheers,
Emilio
diff -ruNp -x '*patch' u-boot-2015.10~rc4+dfsg1/debian/changelog u-boot-2015.10+dfsg1/debian/changelog
--- u-boot-2015.10~rc4+dfsg1/debian/changelog	2015-09-30 21:04:08.000000000 +0200
+++ u-boot-2015.10+dfsg1/debian/changelog	2015-10-27 11:45:43.127669284 +0100
@@ -1,3 +1,11 @@
+u-boot (2015.10+dfsg1-0.1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+  * Add rockchip platforms: firefly-rk3288, rock2-rk3288, rock2-sd-rk3288.
+  * Convert rockchip images to rksd.
+
+ -- Emilio Pozuelo Monfort <[email protected]>  Mon, 26 Oct 2015 13:12:45 +0100
+
 u-boot (2015.10~rc4+dfsg1-1) unstable; urgency=medium
 
   * New upstream release candidate.
diff -ruNp -x '*patch' u-boot-2015.10~rc4+dfsg1/debian/control u-boot-2015.10+dfsg1/debian/control
--- u-boot-2015.10~rc4+dfsg1/debian/control	2015-09-29 01:02:28.000000000 +0200
+++ u-boot-2015.10+dfsg1/debian/control	2015-10-26 13:20:11.000000000 +0100
@@ -96,6 +96,19 @@ Description: A boot loader for exynos sy
  .
  This package includes boot loaders for various Exynos platforms.
 
+Package: u-boot-rockchip
+Architecture: armhf
+Multi-Arch: same
+Depends: ${misc:Depends}
+Description: A boot loader for rockchip systems
+ Das U-Boot is a cross-platform bootloader for embedded systems,
+ used as the default boot loader by several board vendors.  It is
+ intended to be easy to port and to debug, and runs on many
+ supported architectures, including PPC, ARM, MIPS, x86, m68k,
+ NIOS, and Microblaze.
+ .
+ This package includes boot loaders for various Rockchip platforms.
+
 Package: u-boot-tools
 Architecture: linux-any
 Multi-Arch: foreign
diff -ruNp -x '*patch' u-boot-2015.10~rc4+dfsg1/debian/rules u-boot-2015.10+dfsg1/debian/rules
--- u-boot-2015.10~rc4+dfsg1/debian/rules	2015-09-29 01:02:28.000000000 +0200
+++ u-boot-2015.10+dfsg1/debian/rules	2015-10-27 13:36:03.145766654 +0100
@@ -56,6 +56,11 @@ override_dh_auto_build:
 				echo $$builddir/$$target /usr/lib/u-boot/$$platform/ \
 					>> debian/build/targets.$$subarch; \
 			done ;; \
+		rockchip) \
+			echo $$builddir/spl/u-boot-spl-dtb.rksd /usr/lib/u-boot/$$platform/ \
+				>> debian/build/targets.$$subarch; \
+			echo $$builddir >> debian/build/rksd; \
+			;; \
 	        esac; \
 	done
 
@@ -79,6 +84,10 @@ override_dh_auto_build:
 	$(CROSS_COMPILE)strip --remove-section=.comment $(TOOLSDIR)/tools/kwboot
 	$(CROSS_COMPILE)strip --remove-section=.comment $(TOOLSDIR)/tools/mksunxiboot
 
+	set -e; for platform in `cat debian/build/rksd`; do \
+		$(TOOLSDIR)/tools/mkimage -T rksd -d $$platform/spl/u-boot-spl-dtb.bin $$platform/spl/u-boot-spl-dtb.rksd; \
+	done
+
 override_dh_auto_test:
 	# skip tests.
 
diff -ruNp -x '*patch' u-boot-2015.10~rc4+dfsg1/debian/targets u-boot-2015.10+dfsg1/debian/targets
--- u-boot-2015.10~rc4+dfsg1/debian/targets	2015-09-30 21:03:57.000000000 +0200
+++ u-boot-2015.10+dfsg1/debian/targets	2015-10-27 16:46:01.339716562 +0100
@@ -62,6 +62,12 @@ armhf	omap		omap3_beagle	u-boot.img spl/
 # Robert Nelson <[email protected]>
 armhf	omap		omap4_panda	u-boot.img spl/u-boot-spl.bin MLO
 
+# Emilio Pozuelo Monfort <[email protected]>
+# Sjoerd Simons <[email protected]
+armhf	rockchip	firefly-rk3288		u-boot.img spl/u-boot-spl-dtb.bin
+#armhf	rockchip	rock2-rk3288		u-boot.img spl/u-boot-spl-dtb.bin
+#armhf	rockchip	rock2-sd-rk3288		u-boot.img spl/u-boot-spl-dtb.bin
+
 # Joey Hess <[email protected]>
 # Christian Kastner <[email protected]>
 armhf	sunxi		A10-OLinuXino-Lime	u-boot-sunxi-with-spl.bin
diff -ruNp -x '*patch' u-boot-2015.10~rc4+dfsg1/debian/u-boot-rockchip.install u-boot-2015.10+dfsg1/debian/u-boot-rockchip.install
--- u-boot-2015.10~rc4+dfsg1/debian/u-boot-rockchip.install	1970-01-01 01:00:00.000000000 +0100
+++ u-boot-2015.10+dfsg1/debian/u-boot-rockchip.install	2015-10-26 13:20:57.000000000 +0100
@@ -0,0 +1,2 @@
+#!/bin/sh
+debian/bin/u-boot-install-targets rockchip

--- End Message ---
--- Begin Message ---
Source: u-boot
Source-Version: 2015.10+dfsg1-2~exp1

We believe that the bug you reported is fixed in the latest version of
u-boot, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vagrant Cascadian <[email protected]> (supplier of updated u-boot package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 02 Nov 2015 07:59:36 -0800
Source: u-boot
Binary: u-boot u-boot-imx u-boot-tegra u-boot-omap u-boot-sunxi u-boot-exynos 
u-boot-rockchip u-boot-tools
Architecture: source amd64
Version: 2015.10+dfsg1-2~exp1
Distribution: experimental
Urgency: medium
Maintainer: Vagrant Cascadian <[email protected]>
Changed-By: Vagrant Cascadian <[email protected]>
Description:
 u-boot     - A boot loader for embedded systems
 u-boot-exynos - A boot loader for exynos systems
 u-boot-imx - A boot loader for imx systems
 u-boot-omap - A boot loader for omap systems
 u-boot-rockchip - A boot loader for rockchip systems
 u-boot-sunxi - A boot loader for sunxi systems
 u-boot-tegra - A boot loader for tegra systems
 u-boot-tools - companion tools for Das U-Boot bootloader
Closes: 803166
Changes:
 u-boot (2015.10+dfsg1-2~exp1) experimental; urgency=medium
 .
   * Build rockchip package, with firefly-rk3288 as the initial
     target. Thanks to Emilio Pozuelo Monfort and Sjoerd Simons.
     (Closes: #803166).
Checksums-Sha1:
 9c822a42ebc1e10cb469bedc6794c810b5016c4c 2463 u-boot_2015.10+dfsg1-2~exp1.dsc
 5ad556e0625095161d2f65c654e41c4dab6af24f 27144 
u-boot_2015.10+dfsg1-2~exp1.debian.tar.xz
 f2d5f289beeb47b296018e79e87c4ae3aef4b1d5 91468 
u-boot-tools_2015.10+dfsg1-2~exp1_amd64.deb
Checksums-Sha256:
 ecf97f974e829ca8642566699a326ac7a80fe99908eb0b786c401165c9de6587 2463 
u-boot_2015.10+dfsg1-2~exp1.dsc
 cc000dde91c514a5a269a2104ca27a8e41184748d7bb0225c13b65408b4d8b27 27144 
u-boot_2015.10+dfsg1-2~exp1.debian.tar.xz
 111daab4b8b96f759ab2cb5a7f7c0d55b45442a26af19f7cfdf16abb78ebecbc 91468 
u-boot-tools_2015.10+dfsg1-2~exp1_amd64.deb
Files:
 0cad98a14d432dae2e8baf0b39e6f535 2463 admin optional 
u-boot_2015.10+dfsg1-2~exp1.dsc
 ee3ac9356d94595bf7eb0804f445f472 27144 admin optional 
u-boot_2015.10+dfsg1-2~exp1.debian.tar.xz
 c30a3bdb67982a7aef9ee975a3bb8e8b 91468 admin optional 
u-boot-tools_2015.10+dfsg1-2~exp1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJWN4kLAAoJELeLgtSBS5G2+0oQALbmhqu8RSw+ODT2rMixfdzD
2TQeVtgQJR7sE59GtCkB1WSGtd5mfUm9WbyEI4wXQjKbgwgu916Ek+u0fw7BNVao
67QHrrCZAcLpWa04EpiU45T6LLfAB7ru+XEhGNCrMomyF0cU0EzA9630c9ftBiYu
PcASdAm73OiXiB2WelyP+TkFBs7lnnJARXl5WhZN09XZMjOU7XSAqdgD/Gr76UVK
OclEz3kQwpS+cY1rnS1fTd4NOyU9DAlmTYXgUAChgA9Hzz7zaRw5VeeZ4CIVdYFa
l37qdd0DSFN6iUt04eQIpp/zfhjM/tIFAU10vnlVxn+yBgtuGfDpmRe2wnrBVHZy
rHRVw7Smc1uhWJwiV1cs5EjUqVUrtwHQqe+hehUjFoiie1gh+bPZxOXqlI2q6JR6
iqTlUPYgJ5/3tCpVa2RiwW2MDOdKlI+dpwkWIA5q8I4ZofE+IOAyrGZy9apcGtvp
MqMQzgaU8LIC3LT6iHj1Ad7TodeQNGWYW5iiVHqjdiiesmKBgHZUWQYyBTtxlpkM
y+6GJ+e+gpiB/HdptpUD55bhNKqDtaOTbswfsS1eS/6IIn9H1q9mnTI6tmj4kZKU
HR0bo02amdrV3ar2yx5jj3JZVUXTSUXrZLSdjm1K/mOigjR5UGzw6GcIuVA3YmCo
38N6ojdHi1FTcI7mWUSl
=iLrb
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to