diff options
author | Karel Kočí <cynerd@email.cz> | 2017-11-17 22:03:18 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-11-17 22:03:18 +0100 |
commit | f066121b5722fb03bd87519b1c32ecee27e08fc6 (patch) | |
tree | 8ab678e208645d2a2a5804080e5f0c3992d8a617 /sys-boot/myinitramfs/myinitramfs-1.2.ebuild | |
parent | dfbe777ef7c2b285e7e2b8c8f1145849baab89c2 (diff) | |
download | gentoo-personal-overlay-f066121b5722fb03bd87519b1c32ecee27e08fc6.tar.gz gentoo-personal-overlay-f066121b5722fb03bd87519b1c32ecee27e08fc6.tar.bz2 gentoo-personal-overlay-f066121b5722fb03bd87519b1c32ecee27e08fc6.zip |
Add posibility to have no initramfs to linux
Diffstat (limited to 'sys-boot/myinitramfs/myinitramfs-1.2.ebuild')
-rw-r--r-- | sys-boot/myinitramfs/myinitramfs-1.2.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/sys-boot/myinitramfs/myinitramfs-1.2.ebuild b/sys-boot/myinitramfs/myinitramfs-1.2.ebuild deleted file mode 100644 index 8d1ed52..0000000 --- a/sys-boot/myinitramfs/myinitramfs-1.2.ebuild +++ /dev/null @@ -1,44 +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 - -DESCRIPTION="My personal initramfs (verry simple with encryption support)" -HOMEPAGE="" -SRC_URI="" - -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}" - -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 -} |