add sys-kernel/initramfs-image pakage
This commit is contained in:
parent
470615bd06
commit
4d8f679fd6
|
@ -0,0 +1,2 @@
|
|||
DIST initramfs-image-2020.02.01.cpio 34256896 BLAKE2B f290d00f780026a108bc05b9b2c4e30819781ad0ee048acd33c798285bafa3c7a1a8a5384fa4a5d408b74e72140c998408328c5e0ee7e30ab48589ceeb981e46 SHA512 9b8a44f7f49ad5eb2e3998578af139459caf141044c13e8c08ccfffbb30c47b6da4452803ff29fb31606eb2e2238873799c47b60435df89ba235f9be77eea0d4
|
||||
EBUILD initramfs-image-2020.02.01.ebuild 501 BLAKE2B 33644b6d5b53888c7b4585383b28eb0e582f9113fee2d57adf0d92b5e7b7472b1b576dc2353a0b8042388f382092f9d203a4f3446ab177ae1a86d784cb9de934 SHA512 a9e6d0a5183e816e35281718a20fc93081a172c1ec66ae328fe1cedb2776077348adfcad021b0474f8bde40aabaab909c582aad2491240b416678d51ca66c26f
|
|
@ -0,0 +1,24 @@
|
|||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="Initramfs image for including in a kernel at compile"
|
||||
HOMEPAGE="https://github.com/alexminder/"
|
||||
SRC_URI="https://localhost/initramfs.cpio -> ${P}.cpio"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
S=${WORKDIR}
|
||||
|
||||
src_install() {
|
||||
insinto /usr/share/initramfs-image
|
||||
newins ${DISTDIR}/${P}.cpio initramfs.cpio
|
||||
}
|
Loading…
Reference in New Issue