From b674bd50459d7210ed2891a1e54b525339649403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 15 Mar 2018 22:05:22 +0100 Subject: Fix libraries in myinitramfs --- sys-boot/myinitramfs/myinitramfs-1.3-r1.ebuild | 46 ++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 sys-boot/myinitramfs/myinitramfs-1.3-r1.ebuild (limited to 'sys-boot/myinitramfs/myinitramfs-1.3-r1.ebuild') diff --git a/sys-boot/myinitramfs/myinitramfs-1.3-r1.ebuild b/sys-boot/myinitramfs/myinitramfs-1.3-r1.ebuild new file mode 100644 index 0000000..ebdc6c5 --- /dev/null +++ b/sys-boot/myinitramfs/myinitramfs-1.3-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +# TODO support encrytion and btrfs only as option + +EAPI=6 + +VER="${PV%-r*}" + +DESCRIPTION="My personal initramfs (verry simple with encryption support)" +S="${WORKDIR}/myinitramfs-${VER}" + +LICENSE="GPLv2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="+encrypted" + +DEPEND="sys-fs/cryptsetup +sys-fs/btrfs-progs +sys-apps/linux-misc-apps +sys-apps/busybox[static]" +RDEPEND="${DEPENDS} +sys-kernel/linux[initramfs]" + +src_unpack() { + # Well we have no sources so just create empty directory + mkdir -p "${S}" +} + +src_compile() { + # TODO generate list dynamically + cp "${FILESDIR}"/list list + if use encrypted; then + echo "file /init ${FILESDIR}/init.enc 755 0 0" >> list + else + echo "file /init ${FILESDIR}/init.plain 755 0 0" >> list + fi + gen_init_cpio list > initramfs.cpio + gzip initramfs.cpio +} + +src_install() { + dodir /boot + insinto /boot + newins initramfs.cpio.gz initramfs-gentoo +} -- cgit v1.2.3