From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1OQ6lN-0002FS-FA for mharc-grub-devel@gnu.org; Sat, 19 Jun 2010 18:43:45 -0400 Received: from [140.186.70.92] (port=53290 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OQ6lL-0002Eh-DD for grub-devel@gnu.org; Sat, 19 Jun 2010 18:43:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OQ6lJ-0004oj-Qa for grub-devel@gnu.org; Sat, 19 Jun 2010 18:43:42 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:34923) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OQ6lJ-0004oZ-Ka for grub-devel@gnu.org; Sat, 19 Jun 2010 18:43:41 -0400 Received: by fxm15 with SMTP id 15so1374141fxm.0 for ; Sat, 19 Jun 2010 15:43:40 -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=zDbUDFc+z0YF/0bWlPuj9O8WlvkdIkCqu9l/vdWB5Lk=; b=dhQOKQIxiXZM6CE+uoFTYJ1+rsQ0EUvrXhbJ//2moq5IIk+Uc4CPld3us4/+QqKBy7 ahnNS84kAgAlDFaHBHYU444Lh64pWa2QHHEoF+gu05fUAvYYUFwNjqg5bwKrHUG12771 P50qpxblbKKak2q68Le2+J5alraFa/TJp/+so= 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=MKzuaZ+mSdCU0NDZ0jMprqNPaubhUNfVvZSHPxrmvcWio/D3fpX/MkdnlY2QwnIL6Y uzCQc4LHCjRLy+SydgJpRq0dm+xF5YkrvAc8eHri8gBQ7zjLwJA66PqwC5AqIBQdvxgy p/gui1DDaSU9B0SscG/h7kzG2D2LcjsLYqbH8= Received: by 10.87.72.2 with SMTP id z2mr5327531fgk.29.1276987420478; Sat, 19 Jun 2010 15:43:40 -0700 (PDT) Received: from debian.bg45.phnet (215-171.203-62.cust.bluewin.ch [62.203.171.215]) by mx.google.com with ESMTPS id d6sm5565032fga.18.2010.06.19.15.43.39 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 19 Jun 2010 15:43:39 -0700 (PDT) Message-ID: <4C1D481B.8030205@gmail.com> Date: Sun, 20 Jun 2010 00:43:39 +0200 From: =?UTF-8?B?VmxhZGltaXIgJ8+GLWNvZGVyL3BoY29kZXInIFNlcmJpbmVua28=?= User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100515 Icedove/3.0.4 MIME-Version: 1.0 To: grub-devel@gnu.org References: <20100618213826.ru2tw6cfggw8ooc0-cebfxv@webmail.spamcop.net> In-Reply-To: <20100618213826.ru2tw6cfggw8ooc0-cebfxv@webmail.spamcop.net> X-Enigmail-Version: 1.0.1 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enigED14135FB3F6AB9C57A125AF" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: Re: [PATCH] Support Fedora 13 initrd filenames 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: Sat, 19 Jun 2010 22:43:44 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigED14135FB3F6AB9C57A125AF Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 06/19/2010 03:38 AM, Pavel Roskin wrote: > Hello! > > The initial ramdisk on Fedora 13 is called "initramfs-${version}.img" > unlike older versions of Fedora, which used "initrd-${version}.img" > Bitrot in naming of initrd is a bad thing. Unfortunately we can't ignore Fedora. So go ahead > The patch has been tested on Fedora 13. > > ChangeLog: > > * util/grub.d/10_linux.in: Add support for initrd images on > Fedora 13. > > --- util/grub.d/10_linux.in 2010-06-09 18:43:25 +0000 > +++ util/grub.d/10_linux.in 2010-06-18 21:09:00 +0000 > @@ -114,8 +114,9 @@ > > initrd=3D > for i in "initrd.img-${version}" "initrd-${version}.img" \ > - "initrd-${version}" "initrd.img-${alt_version}" \ > - "initrd-${alt_version}.img" "initrd-${alt_version}"; do > + "initrd-${version}" "initramfs-${version}.img" \ > + "initrd.img-${alt_version}" "initrd-${alt_version}.img" \ > + "initrd-${alt_version}" "initramfs-${alt_version}.img"; do > if test -e "${dirname}/${i}" ; then > initrd=3D"$i" > break > > > --=20 Regards Vladimir '=CF=86-coder/phcoder' Serbinenko --------------enigED14135FB3F6AB9C57A125AF 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/ iF4EAREKAAYFAkwdSBsACgkQNak7dOguQglrOQEAsGh+pGOvwpBig77TmWajBKnD XOwrwPeBTmPQwtEhKB4A/RlXifHM63XLxhWR7cODqLMYiJys61+kcVgYgJlmdEfz =LprG -----END PGP SIGNATURE----- --------------enigED14135FB3F6AB9C57A125AF--