mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-28 07:44:52 +00:00
use /etc/system-release for naming of Linux entries instead of GNU/Linux
This commit is contained in:
parent
820140e8ac
commit
cda751bf13
1 changed files with 2 additions and 3 deletions
|
@ -3,7 +3,6 @@ From: Peter Jones <pjones@redhat.com>
|
||||||
Date: Mon, 14 Mar 2011 14:27:42 -0400
|
Date: Mon, 14 Mar 2011 14:27:42 -0400
|
||||||
Subject: [PATCH] Don't say "GNU/Linux" in generated menus.
|
Subject: [PATCH] Don't say "GNU/Linux" in generated menus.
|
||||||
|
|
||||||
In Fedora and RHEL we just call it Linux.
|
|
||||||
---
|
---
|
||||||
util/grub.d/10_linux.in | 4 ++--
|
util/grub.d/10_linux.in | 4 ++--
|
||||||
util/grub.d/20_linux_xen.in | 4 ++--
|
util/grub.d/20_linux_xen.in | 4 ++--
|
||||||
|
@ -18,7 +17,7 @@ index a09c3e6..0b0df78 100644
|
||||||
|
|
||||||
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
||||||
- OS=GNU/Linux
|
- OS=GNU/Linux
|
||||||
+ OS=Linux
|
+ OS="$(sed 's, release .*$,,g' /etc/system-release) Linux"
|
||||||
else
|
else
|
||||||
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
||||||
+ OS="${GRUB_DISTRIBUTOR} Linux"
|
+ OS="${GRUB_DISTRIBUTOR} Linux"
|
||||||
|
@ -34,7 +33,7 @@ index ee49cd9..10422b0 100644
|
||||||
|
|
||||||
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
||||||
- OS=GNU/Linux
|
- OS=GNU/Linux
|
||||||
+ OS=Linux
|
+ OS="$(sed 's, release .*$,,g' /etc/system-release) Linux"
|
||||||
else
|
else
|
||||||
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
||||||
+ OS="${GRUB_DISTRIBUTOR} Linux"
|
+ OS="${GRUB_DISTRIBUTOR} Linux"
|
||||||
|
|
Loading…
Reference in a new issue