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

Bug#256258: marked as done (zipl-installer: Parmline and symlink written incorrectly in d-i)



Your message dated Sun, 18 Jul 2004 17:02:07 -0400
with message-id <E1BmInP-00078p-00@newraff.debian.org>
and subject line Bug#256258: fixed in zipl-installer 0.0.2
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; 25 Jun 2004 18:10:13 +0000
>From athornton@sinenomine.net Fri Jun 25 11:10:13 2004
Return-path: <athornton@sinenomine.net>
Received: from sine.sctelecom.com (mailbox.sinenomine.net) [192.204.203.218] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1Bdv9R-0005HX-00; Fri, 25 Jun 2004 11:10:13 -0700
Received: from localhost (mailbox.sinenomine.net [192.168.101.9])
	by mailbox.sinenomine.net (8.12.6/8.12.6/SuSE Linux 0.6) with ESMTP id i5PIA5Ov029837
	for <submit@bugs.debian.org>; Fri, 25 Jun 2004 14:10:06 -0400
Subject: zipl-installer: Parmline and symlink written incorrectly in d-i
From: Adam Thornton <athornton@sinenomine.net>
To: submit@bugs.debian.org
Content-Type: multipart/mixed; boundary="=-uktFKQb0+gQ2xvVQ+TbS"
Organization: Sine Nomine Associates
Message-Id: <1088187163.23837.295.camel@dev-linux.fsf.net>
Mime-Version: 1.0
X-Mailer: Ximian Evolution 1.4.4 
Date: Fri, 25 Jun 2004 13:12:43 -0500
X-Virus-Scanned: by AMaViS - amavis-milter (http://www.amavis.org/)
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
	autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 


--=-uktFKQb0+gQ2xvVQ+TbS
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Package: zipl-installer
Severity: grave
Justification: renders package unusable
Tags: sid patch

zipl-installer does not work from d-i installation: /vmlinuz symlink
does not exist, and written parmfile is incorrect.

I have included a patch which addresses these.  However, I suspect 
there are better ways of getting the information for the DASD and the
root filesystem than what I've done.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable')
Architecture: s390
Kernel: Linux 2.4.17
Locale: LANG=C, LC_CTYPE=C


--=-uktFKQb0+gQ2xvVQ+TbS
Content-Disposition: attachment; filename=zipl-installer.patch
Content-Type: text/plain; name=zipl-installer.patch; charset=ISO-8859-15
Content-Transfer-Encoding: 7bit

--- zipl-installer.postinst.orig	2004-06-25 10:17:34.000000000 -0400
+++ zipl-installer.postinst	2004-06-25 13:57:14.000000000 -0400
@@ -2,8 +2,26 @@
 
 . /usr/share/debconf/confmodule
 
-db_get debian-installer/kernel/commandline
-echo $RET > /target/boot/parmfile
+#db_get debian-installer/kernel/commandline
+#echo $RET > /target/boot/parmfile
+PARMFILE="ro noinitrd vmpoff=\"LOGOFF\""
+DASD="dasd="
+set -- `cd /dev/dasd; echo *`
+while [ $1 ]; do
+    DASD=${DASD}$1
+    shift;
+    if [ $1 ]; then
+        DASD=${DASD}","
+    fi
+done
+ROOT=`df /target | tail -1 | cut -d ' ' -f 1`
+ROOT="root="${ROOT}
+    
+PARMFILE="${PARMFILE} ${ROOT} ${DASD}"
+echo $PARMFILE > /target/boot/parmfile
+
+VMLINUZ=`echo /target/boot/vmlinuz* | cut -d '/' -f 4`
+chroot /target ln -sf /boot/${VMLINUZ} /vmlinuz
 
 cat > /target/etc/zipl.conf << EOF
 [defaultboot]

--=-uktFKQb0+gQ2xvVQ+TbS--


---------------------------------------
Received: (at 256258-close) by bugs.debian.org; 18 Jul 2004 21:08:38 +0000
>From katie@ftp-master.debian.org Sun Jul 18 14:08:38 2004
Return-path: <katie@ftp-master.debian.org>
Received: from newraff.debian.org [208.185.25.31] (mail)
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1BmIth-00061b-00; Sun, 18 Jul 2004 14:08:37 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
	id 1BmInP-00078p-00; Sun, 18 Jul 2004 17:02:07 -0400
From: Bastian Blank <waldi@debian.org>
To: 256258-close@bugs.debian.org
X-Katie: $Revision: 1.51 $
Subject: Bug#256258: fixed in zipl-installer 0.0.2
Message-Id: <E1BmInP-00078p-00@newraff.debian.org>
Sender: Archive Administrator <katie@ftp-master.debian.org>
Date: Sun, 18 Jul 2004 17:02:07 -0400
Delivered-To: 256258-close@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: zipl-installer
Source-Version: 0.0.2

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

zipl-installer_0.0.2.dsc
  to pool/main/z/zipl-installer/zipl-installer_0.0.2.dsc
zipl-installer_0.0.2.tar.gz
  to pool/main/z/zipl-installer/zipl-installer_0.0.2.tar.gz
zipl-installer_0.0.2_s390.udeb
  to pool/main/z/zipl-installer/zipl-installer_0.0.2_s390.udeb



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 256258@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 zipl-installer 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: Sun, 18 Jul 2004 22:50:06 +0200
Source: zipl-installer
Binary: zipl-installer
Architecture: source s390
Version: 0.0.2
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Bastian Blank <waldi@debian.org>
Description: 
 zipl-installer - Make DASD bootable (udeb)
Closes: 256258 257212
Changes: 
 zipl-installer (0.0.2) unstable; urgency=low
 .
   * Bastian Blank
     - Generate a zipl menu.
     - Add rootdevice to parameter. (closes: #256258, #257212)
   * Updated translations:
     - Arabic (ar.po) by Ossama M. Khayat
     - Bulgarian (bg.po) by Ognyan Kulev
     - Bosnian (bs.po) by Safir Å eÄ?eroviÄ?
     - Catalan (ca.po) by Jordi Mallach
     - Czech (cs.po) by Miroslav Kure
     - Danish (da.po) by Claus Hindsgaul
     - German (de.po) by Alwin Meschede
     - Greek (el.po) by Konstantinos Margaritis
     - Basque (eu.po) by Piarres Beobide Egaña
     - Finnish (fi.po) by Tapio Lehtonen
     - French (fr.po) by Christian Perrier
     - Hebrew (he.po) by Lior Kaplan
     - Hungarian (hu.po) by VER�K István
     - Indonesian (id.po) by Parlin Imanuel Toh
     - Japanese (ja.po) by Kenshi Muto
     - Korean (ko.po) by Changwoo Ryu
     - Lithuanian (lt.po) by KÄ?stutis BiliÅ«nas
     - Dutch (nl.po) by Bart Cornelis
     - Norwegian (nn.po) by HÃ¥vard Korsvoll
     - Polish (pl.po) by Bartosz Fenski
     - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
     - Portuguese (pt.po) by Miguel Figueiredo
     - Romanian (ro.po) by Eddy Petrisor
     - Russian (ru.po) by Yuri Kozlov
     - Slovak (sk.po) by Peter KLFMANiK Mann
     - Slovenian (sl.po) by Jure Cuhalev
     - Albanian (sq.po) by Elian Myftiu
     - Turkish (tr.po) by Recai OktaÅ?
     - Ukrainian (uk.po) by Eugeniy Meshcheryakov
     - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
     - Traditional Chinese (zh_TW.po) by Tetralet
Files: 
 6c5c8b11a67c581ad331511a527fb7c3 587 debian-installer standard zipl-installer_0.0.2.dsc
 abd6473193601f9b7b301548953f7979 8034 debian-installer standard zipl-installer_0.0.2.tar.gz
 5e2b428d8f7216e7f707d575871e30e8 992 debian-installer standard zipl-installer_0.0.2_s390.udeb
package-type: udeb

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

iEYEARECAAYFAkD642kACgkQLkAIIn9ODhEPGwCgsDNj64oYH47lhYG0q+6ZsjT9
0DsAoPKYiInt9E+ldiOSLqP0vkiYW+x0
=1TFx
-----END PGP SIGNATURE-----



Reply to: