From 90aa87d009c018b04d36821c1d760d07a0f5c377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 15 Mar 2018 21:40:40 +0100 Subject: Try to use static cryptsetup and busybox --- sys-boot/myinitramfs/myinitramfs-1.2-r2.ebuild | 46 -------------------------- sys-boot/myinitramfs/myinitramfs-1.2-r3.ebuild | 46 ++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 46 deletions(-) delete mode 100644 sys-boot/myinitramfs/myinitramfs-1.2-r2.ebuild create mode 100644 sys-boot/myinitramfs/myinitramfs-1.2-r3.ebuild (limited to 'sys-boot') diff --git a/sys-boot/myinitramfs/myinitramfs-1.2-r2.ebuild b/sys-boot/myinitramfs/myinitramfs-1.2-r2.ebuild deleted file mode 100644 index ebdc6c5..0000000 --- a/sys-boot/myinitramfs/myinitramfs-1.2-r2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# 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 -} diff --git a/sys-boot/myinitramfs/myinitramfs-1.2-r3.ebuild b/sys-boot/myinitramfs/myinitramfs-1.2-r3.ebuild new file mode 100644 index 0000000..4d3a113 --- /dev/null +++ b/sys-boot/myinitramfs/myinitramfs-1.2-r3.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[static] +sys-fs/btrfs-progs[static] +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