From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1OEqkG-0007wq-RP for mharc-grub-devel@gnu.org; Wed, 19 May 2010 17:24:04 -0400 Received: from [140.186.70.92] (port=60742 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEqkD-0007us-Gp for grub-devel@gnu.org; Wed, 19 May 2010 17:24:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEqkA-00080i-Fp for grub-devel@gnu.org; Wed, 19 May 2010 17:24:01 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:37497) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEqkA-00080d-63 for grub-devel@gnu.org; Wed, 19 May 2010 17:23:58 -0400 Received: by wyb33 with SMTP id 33so105783wyb.0 for ; Wed, 19 May 2010 14:23:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :x-enigmail-version:content-type; bh=gObeE548IRuFMfw2MwfDVgRX+hR8TJtlh4ydJN0IfKo=; b=Y7sN3Qrxmw79VND5TgSLQ5YWk8osoNITjFSiLC9yphTXMkN4iiPXyPz3/xB2tu/8oq OF4WkNj2djdyQiYD7/ZRTkUsPsXDiWZjkkYQzkiEK7CdeA6bsZUZiGoVTE9OYQvxYczL nClECyvAe4vaGoYL8zQDwfqQYch5gmHgX6Zq0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:x-enigmail-version:content-type; b=W6H9HYG6i6dhdWUcorQ4WtlyGA/jurwW+2xvc0hOP9AZf0t1Ocmsb2/Wxhzb6fXxjt JaqZAxpgf1cAs2s71i8bYFv1hBr2wHfs8Vk6uEBXBdxoPdxK0wrWBSedVEOtqBgoKeuT b3hOC6gUMgfbfpRj2ZpVsrCCHs6oOP5i3/xzQ= Received: by 10.216.87.65 with SMTP id x43mr5529289wee.208.1274304237338; Wed, 19 May 2010 14:23:57 -0700 (PDT) Received: from debian.bg45.phnet (gprs35.swisscom-mobile.ch [193.247.250.35]) by mx.google.com with ESMTPS id i6sm21207424gve.5.2010.05.19.14.23.54 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 19 May 2010 14:23:56 -0700 (PDT) Message-ID: <4BF456E0.8090009@gmail.com> Date: Wed, 19 May 2010 23:23:44 +0200 From: =?UTF-8?B?VmxhZGltaXIgJ8+GLWNvZGVyL3BoY29kZXInIFNlcmJpbmVua28=?= User-Agent: Mozilla-Thunderbird 2.0.0.22 (X11/20091109) MIME-Version: 1.0 To: The development of GNU GRUB References: <4BF1B631.1030207@gmail.com> <106227837017031@192.168.2.69> In-Reply-To: <106227837017031@192.168.2.69> X-Enigmail-Version: 0.95.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig818ECC394174D4057D729A65" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: Re: Migrations to xorriso X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 May 2010 21:24:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig818ECC394174D4057D729A65 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Thomas Schmitt wrote: > Hi, > > reviewing my grub-mkrescue 1.98 test script > i see these options which will cause the files > in /boot to have low block addresses: > > xorriso ... -as mkisofs ... \ > --sort-weight 0 / --sort-weight 1 /boot \ > ... > > The boot catalog gets a low LBA by default. > > I remember Vladimir mentioned that some BIOSes > need low addresses. > So probably one should add these options to > grub-mkrescue.in. > > =20 Ok, will do. > Vladimir Serbinenko wrote: > =20 >> @Thomas: grub-mkisofs was partially translated. Could you look into >> reusing translation strings for xorriso? >> =20 > > Currently there is no internationalization in > xorriso. I would probably need some advise and > an interested translator to make it ready for > that. > > =20 Actually it seems that xorriso doesn't have a lot of common strings with grub-mkisofs so probably there is no much value in reusing strings. As for advice: you already have automake so adding gettext should be easy change in Makefile.am followed by marking all translatable strings with _() and including proper header. But the hic is if xorriso uses any like printf("Device %s is %s.", devname, valid ? "valid" : "invalid"); will need to be changed to: printf(valid ?_("Device %s is valid."):_("Device %s is invalid."), devnam= e); since string operations are untranslatable. > > Have a nice day :) > > Thomas > > > _______________________________________________ > Grub-devel mailing list > Grub-devel@gnu.org > http://lists.gnu.org/mailman/listinfo/grub-devel > > =20 --=20 Regards Vladimir '=CF=86-coder/phcoder' Serbinenko --------------enig818ECC394174D4057D729A65 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iF0EAREKAAYFAkv0VucACgkQNak7dOguQgk3LAD4lRIDWXVbiR1JPMTd6hslFg3T kOEmVoEHeznXdHppugD5AV1ENw7VE915f+aaM27A3bZksc21unqMIk3B5AAbT6s= =0iXQ -----END PGP SIGNATURE----- --------------enig818ECC394174D4057D729A65--