diff options
-rw-r--r-- | sys-kernel/linux/linux-4.11.9-r2.ebuild (renamed from sys-kernel/linux/linux-4.11.9-r1.ebuild) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-kernel/linux/linux-4.11.9-r1.ebuild b/sys-kernel/linux/linux-4.11.9-r2.ebuild index 0dcdd3e..47e48ea 100644 --- a/sys-kernel/linux/linux-4.11.9-r1.ebuild +++ b/sys-kernel/linux/linux-4.11.9-r2.ebuild @@ -56,7 +56,7 @@ pkg_postinst() { ARGS="$(grep -E "^# ARGS: " "${SYSLINUX}" | sed 's/^# ARGS: //')" if [ -n "$ARGS" ]; then sed -i "/^## Dynamic labels ##$/a LABEL gentoo-${PV}\n\tMENU LABEL Gentoo ${PV}\n\tLINUX ../bzlinux-${PV}\n\tAPPEND ${ARGS}\n\tINITRD ../initramfs-gentoo\n" "${SYSLINUX}" || eerror "Adding label to syslinux configuration failed!" - sed -i "/^## Dynamic recovery labels ##$/a LABEL gentoo-${PV}\n\tMENU LABEL Gentoo ${PV} - Recovery\n\tLINUX ../bzlinux-${PV}\n\tAPPEND ${ARGS} recovery\n\tINITRD ../initramfs-gentoo\n" "${SYSLINUX}" || eerror "Adding recovery label to syslinux configuration failed!" + sed -i "/^## Dynamic recovery labels ##$/a LABEL gentoo-${PV}-recovery\n\tMENU LABEL Gentoo ${PV} - Recovery\n\tLINUX ../bzlinux-${PV}\n\tAPPEND ${ARGS} recovery\n\tINITRD ../initramfs-gentoo\n" "${SYSLINUX}" || eerror "Adding recovery label to syslinux configuration failed!" else eerror "Adding label to syslinux configuration failed as there are no arguments" fi @@ -66,7 +66,7 @@ pkg_postinst() { pkg_prerm() { # Remove label from syslinux config - sed -i "/^LABEL gentoo-${PV}(|-recovery)$/,/^$/d" /boot/syslinux/syslinux.cfg || eerror "Removing label from syslinux fonfiguration failed!" + sed -i "/^LABEL gentoo-${PV}\(\|-recovery\)$/,/^$/d" /boot/syslinux/syslinux.cfg || eerror "Removing label from syslinux fonfiguration failed!" } pkg_postrm() { |