[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#607614: marked as done (uboot-mkimage -> u-boot)



Your message dated Sat, 10 Mar 2012 00:47:12 +0000
with message-id <E1S6ASm-0007G4-Bx@franck.debian.org>
and subject line Bug#607614: fixed in flash-kernel 3.0~rc.3
has caused the Debian Bug report #607614,
regarding uboot-mkimage -> u-boot
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 owner@bugs.debian.org
immediately.)


-- 
607614: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607614
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: flash-kernel
Version: 2.37
Severity: minor
Tags: patch
User: ubuntu-devel@lists.ubuntu.com
Usertags: origin-ubuntu natty ubuntu-patch

        Hey there

 u-boot's mkimage moved from the uboot-mkimage binary to the u-boot
 binary in Debian unstable; the attached untested patch is an attempt to
 use this new package name while still supporting backports of
 flash-kernel to older releases.

   Cheers,
-- 
Loïc Minier
diff -Nru flash-kernel-2.37/debian/changelog flash-kernel-2.38/debian/changelog
--- flash-kernel-2.37/debian/changelog	2010-11-18 18:09:21.000000000 +0100
+++ flash-kernel-2.38/debian/changelog	2010-12-20 11:10:07.000000000 +0100
@@ -1,3 +1,12 @@
+flash-kernel (2.38) UNRELEASED; urgency=low
+
+  * mkimage moved from the uboot-mkimage to the u-boot package:
+    - update control to suggest u-boot | uboot-mkimage.
+    - update flash-kernel-installer.postinst to use a common function to
+      install mkimage and try installing u-boot in-target first.
+
+ -- Loïc Minier <loic.minier@linaro.org>  Mon, 20 Dec 2010 11:09:34 +0100
+
 flash-kernel (2.37) unstable; urgency=low
 
   * Don't set a default root device when the specified root device
diff -Nru flash-kernel-2.37/debian/control flash-kernel-2.38/debian/control
--- flash-kernel-2.37/debian/control	2010-11-18 18:09:21.000000000 +0100
+++ flash-kernel-2.38/debian/control	2010-12-20 11:07:23.000000000 +0100
@@ -10,7 +10,7 @@
 Package: flash-kernel
 Architecture: arm armel armeb
 Depends: devio, initramfs-tools (>= 0.92f)
-Suggests: uboot-mkimage
+Suggests: u-boot | uboot-mkimage
 Description: utility to make certain embedded devices bootable
  flash-kernel is a script which will put the kernel and initramfs in
  the boot location of embedded devices that don't load the kernel and
diff -Nru flash-kernel-2.37/debian/flash-kernel-installer.postinst flash-kernel-2.38/debian/flash-kernel-installer.postinst
--- flash-kernel-2.37/debian/flash-kernel-installer.postinst	2010-11-18 18:09:21.000000000 +0100
+++ flash-kernel-2.38/debian/flash-kernel-installer.postinst	2010-12-20 11:09:01.000000000 +0100
@@ -20,6 +20,12 @@
 	mount | grep "on /target${1%/} " | tail -n1 | cut -d' ' -f1
 }
 
+install_mkimage() {
+	if ! apt-install u-boot && ! apt-install uboot-mkimage; then
+		error "apt-install u-boot and apt-install uboot-mkimage failed"
+	fi
+}
+
 # Are we writing to flash or constructing an image on disk?
 write_to_flash() {
 	case "$machine" in
@@ -96,30 +102,22 @@
 case "$machine" in
 	"Buffalo Linkstation Pro/Live" | "Buffalo/Revogear Kurobox Pro")
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 	;;
 	"D-Link DNS-323")
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 	;;
 	"GLAN Tank")
 		in-target update-initramfs -u || true
 	;;
 	"GTA02")
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 	;;
 	"HP t5325 Thin Client")
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 	;;
 	"HP Media Vault mv2120")
 		if ! apt-install mv2120-utils; then
@@ -129,9 +127,7 @@
 			log "apt-install mv2120-utils failed"
 		fi
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 		# The firmware loads /boot/uImage from the first partition
 		# but uImage will be in / if a separate boot partition is
 		# used.  In this case, create a /boot/boot -> /boot symlink.
@@ -163,18 +159,14 @@
 	;;
 	"Marvell GuruPlug Reference Board" | "Marvell OpenRD Base Board" | "Marvell OpenRD Client Board" | "Marvell OpenRD Ultimate Board" | "Marvell SheevaPlug Reference Board" | "Marvell eSATA SheevaPlug Reference Board" | "Seagate FreeAgent DockStar")
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 	;;
 	"Thecus N2100" | "Thecus N4100")
 		in-target update-initramfs -u || true
 	;;
 	"QNAP TS-109/TS-209" | "QNAP TS-119/TS-219" | "QNAP TS-409" | "QNAP TS-41x")
 		in-target update-initramfs -u || true
-		if ! apt-install uboot-mkimage; then
-			error "apt-install uboot-mkimage failed"
-		fi
+		install_mkimage
 	;;
 	"Lanner EM7210")
 		in-target update-initramfs -u || true

--- End Message ---
--- Begin Message ---
Source: flash-kernel
Source-Version: 3.0~rc.3

We believe that the bug you reported is fixed in the latest version of
flash-kernel, which is due to be installed in the Debian FTP archive:

flash-kernel-installer_3.0~rc.3_armel.udeb
  to main/f/flash-kernel/flash-kernel-installer_3.0~rc.3_armel.udeb
flash-kernel_3.0~rc.3.dsc
  to main/f/flash-kernel/flash-kernel_3.0~rc.3.dsc
flash-kernel_3.0~rc.3.tar.gz
  to main/f/flash-kernel/flash-kernel_3.0~rc.3.tar.gz
flash-kernel_3.0~rc.3_armel.deb
  to main/f/flash-kernel/flash-kernel_3.0~rc.3_armel.deb



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 607614@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loïc Minier <lool@debian.org> (supplier of updated flash-kernel 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 ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 10 Mar 2012 01:17:09 +0100
Source: flash-kernel
Binary: flash-kernel flash-kernel-installer
Architecture: source armel
Version: 3.0~rc.3
Distribution: experimental
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Loïc Minier <lool@debian.org>
Description: 
 flash-kernel - utility to make certain embedded devices bootable
 flash-kernel-installer - Make the system bootable (udeb)
Closes: 607614
Changes: 
 flash-kernel (3.0~rc.3) experimental; urgency=low
 .
   [ Hector Oron ]
   * Replace uboot-mkimage by u-boot-tools.
 .
   [ Loïc Minier ]
   * Remove executable on database file.
   * Following changes thanks to Steve McIntyre:
     - Fix breakage when Boot-Device isn't set.
     - db: Fix kernel load address for DB-78x00-BP.
     - db: Add support for MX53 LOCO Board.
   * Also replace uboot-mkimage with u-boot-tools in db; closes: #607614.
Checksums-Sha1: 
 9948305913d87908bde4e26dcc1b96b45650ffbe 1132 flash-kernel_3.0~rc.3.dsc
 ba75bf64de2b401f5797a4ea6b6f18eaee7a4837 53323 flash-kernel_3.0~rc.3.tar.gz
 fafc7625c81b672a8acdcfb0154fe7a59fce398c 23588 flash-kernel_3.0~rc.3_armel.deb
 31cc13da4aad58b3052a7904e720a04aa41158e7 18610 flash-kernel-installer_3.0~rc.3_armel.udeb
Checksums-Sha256: 
 04ba933b4402802369e697136d86270bba32a0a37b04be35230af83442a8109f 1132 flash-kernel_3.0~rc.3.dsc
 2bfec0cf38f2e159fb4526669ee1f6696300489be5b2372f024d7717c29eb616 53323 flash-kernel_3.0~rc.3.tar.gz
 7b1be5bbae30660ef844c5df67aba6dc797079111ba9de3875e915dafb207bbe 23588 flash-kernel_3.0~rc.3_armel.deb
 3a9ae6c39bc3442b599ef922a305fc11740635e92210aee9ecbca17b109c3fe7 18610 flash-kernel-installer_3.0~rc.3_armel.udeb
Files: 
 1c056831a30673a23be07ecc8a681d2d 1132 utils optional flash-kernel_3.0~rc.3.dsc
 cf55e9a4e9845150442f65176a489b07 53323 utils optional flash-kernel_3.0~rc.3.tar.gz
 45c0531a6ff91f7a478182dd17db860e 23588 utils optional flash-kernel_3.0~rc.3_armel.deb
 92d0994f2261e6bcea93609b1345a317 18610 debian-installer standard flash-kernel-installer_3.0~rc.3_armel.udeb
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk9aojoACgkQ4VUX8isJIMCswACfd4EaoU/F8DK2V8CjsQZVsH/m
oqkAn2Oc99xQTSLOgP5BM5gUco8dmmqh
=Sz/M
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: