22 lines
625 B
Bash
22 lines
625 B
Bash
# Copyright 2004-2010 Sabayon Linux
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
ETYPE="sources"
|
|
K_SABKERNEL_SELF_TARBALL_NAME="sabayon"
|
|
K_KERNEL_SOURCES_PKG="sys-kernel/server-sources-${PVR}"
|
|
K_REQUIRED_LINUX_FIRMWARE_VER="20120219"
|
|
K_SABKERNEL_FORCE_SUBLEVEL="0"
|
|
inherit sabayon-kernel
|
|
KEYWORDS="~amd64 ~x86"
|
|
DESCRIPTION="Official Sabayon Linux Server kernel image"
|
|
RESTRICT="mirror"
|
|
|
|
src_unpack() {
|
|
sabayon-kernel_src_unpack
|
|
|
|
# workaround for bug in tarball file, missing Makefiles, please remove
|
|
# on next revision
|
|
touch "${S}/spl/spl/Makefile" || die
|
|
touch "${S}/spl/splat/Makefile" || die
|
|
}
|