forked from pool/grub2
Accepting request 317568 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/317568 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grub2?expand=0&rev=121
This commit is contained in:
commit
9599b7498e
@ -62,6 +62,10 @@ snapshot_submenu () {
|
||||
kernel_ver=`readlink ${snapshot}/boot/image | sed -e 's/^image-//' -e 's/-default$//'`
|
||||
fi
|
||||
eval `cat ${snapshot}/etc/os-release`
|
||||
# bsc#934252 - Replace SLES 12.1 with SLES12-SP1 for the list of snapshots
|
||||
if test "${NAME}" = "SLES" -o "${NAME}" = "SLED"; then
|
||||
VERSION=`echo ${VERSION} | sed -e 's!^\([0-9]\{1,\}\)\.\([0-9]\{1,\}\)$!\1-SP\2!'`
|
||||
fi
|
||||
|
||||
# FATE#318101
|
||||
# Show user defined comments in grub2 menu for snapshots
|
||||
@ -85,7 +89,12 @@ snapshot_submenu () {
|
||||
test "$stype" = "single" && stype=""
|
||||
test -z "$stype" || stype=",$stype"
|
||||
test -z "$desc" || desc=",$desc"
|
||||
title="${important}${NAME} $VERSION ($kernel_ver,$date$stype$desc)"
|
||||
|
||||
if test "${NAME}" = "SLES" -o "${NAME}" = "SLED"; then
|
||||
title="${important}${NAME}${VERSION} ($kernel_ver,$date$stype$desc)"
|
||||
else
|
||||
title="${important}${NAME} ${VERSION} ($kernel_ver,$date$stype$desc)"
|
||||
fi
|
||||
|
||||
cat <<EOF
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 17 08:44:24 UTC 2015 - mchang@suse.com
|
||||
|
||||
- Replace 12.1 with 12 SP1 for the list of snapshots (bsc#934252)
|
||||
* modified grub2-snapper-plugin.sh
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 18 08:43:07 UTC 2015 - mchang@suse.com
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user