blob: 0d10438341e563630bcaae2968237c32be96c06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit base
DESCRIPTION="Make an initramfs/initrd with root on crypto, lvm, mdadm, etc."
HOMEPAGE="https://sourceforge.net/projects/aeuio/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" # or .lzma
LICENSE=" || ( GPL-2 GPL-3 LGPL-3 BSD CCPL-Attribution-3.0 )"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="sys-apps/busybox"
pkg_postinst() {
elog "Please follow the instructions in /usr/src/aeuio/USAGE"
elog "You may also want to read /usr/src/aeuio/process.txt"
elog "If your system only uses bare partitions, mdadm, lvm, and"
elog " any encrypted root / swap devices are mentioned in a debian"
elog " style /etc/crypttab file then the automatic tool may be used."
elog " update-initramfs-aeuio will generate an initramfs in \$PWD."
}
|