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

Bug#325244: marked as done (busybox FTBFS due to gcc-4.0 on powerpc, mips, mipsel and ia64, breaks d-i.)



Your message dated Wed, 31 Aug 2005 03:17:06 -0700
with message-id <E1EAPeU-0000E2-00@spohr.debian.org>
and subject line Bug#325244: fixed in busybox 1:1.01-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 26 Aug 2005 22:45:16 +0000
>From luther@debian.org Fri Aug 26 15:45:16 2005
Return-path: <luther@debian.org>
Received: from smtp1.wanadoo.fr [193.252.22.30] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1E8mwm-0005p6-00; Fri, 26 Aug 2005 15:45:16 -0700
Received: from me-wanadoo.net (localhost [127.0.0.1])
	by mwinf0112.wanadoo.fr (SMTP Server) with ESMTP id D91841C0060A
	for <submit@bugs.debian.org>; Sat, 27 Aug 2005 00:44:44 +0200 (CEST)
Received: from pegasos (AStrasbourg-251-1-6-156.w82-126.abo.wanadoo.fr [82.126.196.156])
	by mwinf0112.wanadoo.fr (SMTP Server) with ESMTP id A3A471C00606
	for <submit@bugs.debian.org>; Sat, 27 Aug 2005 00:44:44 +0200 (CEST)
X-ME-UUID: 20050826224444670.A3A471C00606@mwinf0112.wanadoo.fr
Received: from sven by pegasos with local (Exim 4.50)
	id 1E8ms1-0005V2-5H
	for submit@bugs.debian.org; Sat, 27 Aug 2005 00:40:21 +0200
Content-Type: multipart/mixed; boundary="===============1830458217=="
MIME-Version: 1.0
From: Sven Luther <luther@debian.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: busybox FTBFS due to gcc-4.0 on powerpc, mips, mipsel and ia64, breaks d-i.
X-Mailer: reportbug 3.8
Date: Sat, 27 Aug 2005 00:40:16 +0200
Message-Id: <[🔎] E1E8ms1-0005V2-5H@pegasos>
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============1830458217==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: busybox
Version: 1.00-5
Severity: serious
Tags: patch d-i
Justification: no longer builds from source


Hi, busybox 1.00-4 and 1.00-5 fail to build on powerpc, ia64 and both mips,
and as a consequence was not rebuild with the newer glibc 2.3.5, and thus
failed horribly in d-i with stuff like :

  /bin/sh: relocation error: /bin/sh: symbol longjmp, version GLIBC_2.0 not
  defined in file libc.so.6 with link time reference

The build error are rather trivial gcc-4.0 issues, and the appended patch
solves them in a correct albeit maybe not most esthetical way.

Please consider an upload ASAP to fix those issues, as they severly break
debian-installer on those architectures.

Friendly,

Sven Luther

-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.12-1-powerpc
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

--===============1830458217==
Content-Type: text/x-c; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="modutils.diff"

diff -Nur busybox-1.00/modutils/obj/obj_ia64.c busybox-1.00-fixed/modutils/obj/obj_ia64.c
--- busybox-1.00/modutils/obj/obj_ia64.c	2005-08-26 22:31:12.000000000 +0000
+++ busybox-1.00-fixed/modutils/obj/obj_ia64.c	2005-08-26 22:30:46.000000000 +0000
@@ -127,8 +127,8 @@
 	return (*(bundle + 1) >> 23) & 0x1ffffffffff;
 
     default:
+    	return (-1);
     }
-    return (-1);
 }
 
 /*
diff -Nur busybox-1.00/modutils/obj/obj_mips.c busybox-1.00-fixed/modutils/obj/obj_mips.c
--- busybox-1.00/modutils/obj/obj_mips.c	2005-08-26 22:31:12.000000000 +0000
+++ busybox-1.00-fixed/modutils/obj/obj_mips.c	2005-08-26 22:28:25.000000000 +0000
@@ -244,7 +244,8 @@
   archdata_sec->header.sh_size = 0;
   sec = obj_find_section(f, "__dbe_table");
   if (sec) {
-    ad = (struct archdata *) (archdata_sec->contents) = xmalloc(sizeof(*ad));
+    archdata_sec->contents = xmalloc(sizeof(*ad));
+    ad = (struct archdata *) (archdata_sec->contents);
     memset(ad, 0, sizeof(*ad));
     archdata_sec->header.sh_size = sizeof(*ad);
     ad->__start___dbe_table = sec->header.sh_addr;
diff -Nur busybox-1.00/modutils/obj/obj_ppc.c busybox-1.00-fixed/modutils/obj/obj_ppc.c
--- busybox-1.00/modutils/obj/obj_ppc.c	2005-08-26 22:32:54.000000000 +0000
+++ busybox-1.00-fixed/modutils/obj/obj_ppc.c	2005-08-26 22:16:17.000000000 +0000
@@ -255,7 +255,8 @@
   archdata_sec->header.sh_size = 0;
   sec = obj_find_section(f, "__ftr_fixup");
   if (sec) {
-    ad = (struct archdata *) (archdata_sec->contents) = xmalloc(sizeof(*ad));
+    archdata_sec->contents = xmalloc(sizeof(*ad));
+    ad = (struct archdata *) (archdata_sec->contents);
     memset(ad, 0, sizeof(*ad));
     archdata_sec->header.sh_size = sizeof(*ad);
     ad->__start___ftr_fixup = sec->header.sh_addr;

--===============1830458217==--


---------------------------------------
Received: (at 325244-close) by bugs.debian.org; 31 Aug 2005 10:19:31 +0000
>From katie@spohr.debian.org Wed Aug 31 03:19:31 2005
Return-path: <katie@spohr.debian.org>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
	id 1EAPeU-0000E2-00; Wed, 31 Aug 2005 03:17:06 -0700
From: Bastian Blank <waldi@debian.org>
To: 325244-close@bugs.debian.org
X-Katie: $Revision: 1.56 $
Subject: Bug#325244: fixed in busybox 1:1.01-1
Message-Id: <E1EAPeU-0000E2-00@spohr.debian.org>
Sender: Archive Administrator <katie@spohr.debian.org>
Date: Wed, 31 Aug 2005 03:17:06 -0700
Delivered-To: 325244-close@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: busybox
Source-Version: 1:1.01-1

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

busybox-floppy-udeb_1.01-1_i386.udeb
  to pool/main/b/busybox/busybox-floppy-udeb_1.01-1_i386.udeb
busybox-static_1.01-1_i386.deb
  to pool/main/b/busybox/busybox-static_1.01-1_i386.deb
busybox-udeb_1.01-1_i386.udeb
  to pool/main/b/busybox/busybox-udeb_1.01-1_i386.udeb
busybox_1.01-1.diff.gz
  to pool/main/b/busybox/busybox_1.01-1.diff.gz
busybox_1.01-1.dsc
  to pool/main/b/busybox/busybox_1.01-1.dsc
busybox_1.01-1_i386.deb
  to pool/main/b/busybox/busybox_1.01-1_i386.deb
busybox_1.01.orig.tar.gz
  to pool/main/b/busybox/busybox_1.01.orig.tar.gz



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

Debian distribution maintenance software
pp.
Bastian Blank <waldi@debian.org> (supplier of updated busybox 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.7
Date: Wed, 24 Aug 2005 19:28:13 +0200
Source: busybox
Binary: busybox-floppy-udeb busybox busybox-udeb busybox-static
Architecture: source i386
Version: 1:1.01-1
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Bastian Blank <waldi@debian.org>
Description: 
 busybox    - Tiny utilities for small and embedded systems
 busybox-floppy-udeb - Tiny utilities for the debian-installer floppy images (udeb)
 busybox-static - Standalone rescue shell with tons of builtin utilities
 busybox-udeb - Tiny utilities for the debian-installer (udeb)
Closes: 325244
Changes: 
 busybox (1:1.01-1) unstable; urgency=low
 .
   * New upstream version.
   * Fix more compilation errors. (closes: #325244)
Files: 
 da33b9f85709c83ac4bc97f72b28a9eb 690 - optional busybox_1.01-1.dsc
 0c09200bdbd7e0fb7c22a80c82b732f1 1170390 - optional busybox_1.01.orig.tar.gz
 d466f3fc80311c20df46214914e8c8a0 176915 - optional busybox_1.01-1.diff.gz
 ff7eb57f72493d5c40501ebc3534a87b 135728 utils optional busybox_1.01-1_i386.deb
 c214cb217c80c20fcc27d38be9f5dbaf 676876 shells optional busybox-static_1.01-1_i386.deb
 3ce3eae4375ffeb8f881afead09010ec 130762 debian-installer extra busybox-udeb_1.01-1_i386.udeb
 d32dcdce8b439047169c672f63aae491 58216 debian-installer extra busybox-floppy-udeb_1.01-1_i386.udeb
Package-Type: udeb

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

iEYEARECAAYFAkMVgZIACgkQLkAIIn9ODhHIlwCfSjOs/mkrXV20auenBv4pQurd
EscAoMoBnX31U4XCr6i/mpGp6toZZq6A
=53tv
-----END PGP SIGNATURE-----



Reply to: