From eb5293e2812749cf12409bc09117d00bc60f548d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 25 Apr 2018 22:53:24 +0100 Subject: sys-kernel/dracut-config-redcore : create a generic ramfs by default --- .../dracut-config-redcore-1803-r1.ebuild | 40 ++++++++++++++++++++++ .../dracut-config-redcore-1803.ebuild | 40 ---------------------- .../files/redcore-dracut.conf | 2 +- 3 files changed, 41 insertions(+), 41 deletions(-) create mode 100644 sys-kernel/dracut-config-redcore/dracut-config-redcore-1803-r1.ebuild delete mode 100644 sys-kernel/dracut-config-redcore/dracut-config-redcore-1803.ebuild diff --git a/sys-kernel/dracut-config-redcore/dracut-config-redcore-1803-r1.ebuild b/sys-kernel/dracut-config-redcore/dracut-config-redcore-1803-r1.ebuild new file mode 100644 index 00000000..727dddb2 --- /dev/null +++ b/sys-kernel/dracut-config-redcore/dracut-config-redcore-1803-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +DESCRIPTION="Redcore Linux Dracut configuration files" +HOMEPAGE="" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND="sys-boot/grub" + +S="${FILESDIR}" + +pkg_preinst() { + # Backup Dracut configuration file + if [[ -f ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" ]]; then + cp -avx ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" + fi +} + +src_install() { + # if we overwrite /etc/dracut.conf.d/redcore-dracut.conf we may break users setup + # so install the new Dracut configuration file as example only + dodir "etc/dracut.conf.d" || die + insinto "etc/dracut.conf.d" || die + newins redcore-dracut.conf redcore-dracut.conf.example || die +} + +pkg_postinst() { + # Restore Dracut configuration file + if [[ -f ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" ]]; then + cp -avx ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" + fi +} diff --git a/sys-kernel/dracut-config-redcore/dracut-config-redcore-1803.ebuild b/sys-kernel/dracut-config-redcore/dracut-config-redcore-1803.ebuild deleted file mode 100644 index 727dddb2..00000000 --- a/sys-kernel/dracut-config-redcore/dracut-config-redcore-1803.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -DESCRIPTION="Redcore Linux Dracut configuration files" -HOMEPAGE="" -SRC_URI="" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="sys-boot/grub" - -S="${FILESDIR}" - -pkg_preinst() { - # Backup Dracut configuration file - if [[ -f ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" ]]; then - cp -avx ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" - fi -} - -src_install() { - # if we overwrite /etc/dracut.conf.d/redcore-dracut.conf we may break users setup - # so install the new Dracut configuration file as example only - dodir "etc/dracut.conf.d" || die - insinto "etc/dracut.conf.d" || die - newins redcore-dracut.conf redcore-dracut.conf.example || die -} - -pkg_postinst() { - # Restore Dracut configuration file - if [[ -f ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" ]]; then - cp -avx ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf.backup" ""${ROOT}"etc/dracut.conf.d/redcore-dracut.conf" - fi -} diff --git a/sys-kernel/dracut-config-redcore/files/redcore-dracut.conf b/sys-kernel/dracut-config-redcore/files/redcore-dracut.conf index 52c06970..0791417f 100644 --- a/sys-kernel/dracut-config-redcore/files/redcore-dracut.conf +++ b/sys-kernel/dracut-config-redcore/files/redcore-dracut.conf @@ -1,5 +1,5 @@ # Host-Only mode: Install only what is needed for booting the local host instead of a generic host and generate host-specific configuration. -hostonly="yes" +hostonly="no" # Combine early microcode with ramdisk. Uncomment the line bellow, and run "dracut -f" if you want early microcode update. early_microcode="yes" -- cgit v1.2.3