| 1 |
# Copyright 1999-2005 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.130 2005/06/30 18:32:45 johnm Exp $ |
| 4 |
|
| 5 |
# Description: kernel.eclass rewrite for a clean base regarding the 2.6 |
| 6 |
# series of kernel with back-compatibility for 2.4 |
| 7 |
# |
| 8 |
# Maintainer: John Mylchreest <johnm@gentoo.org> |
| 9 |
# Copyright 2005 Gentoo Linux |
| 10 |
# |
| 11 |
# Please direct your bugs to the current eclass maintainer :) |
| 12 |
|
| 13 |
# added functionality: |
| 14 |
# unipatch - a flexible, singular method to extract, add and remove patches. |
| 15 |
|
| 16 |
# A Couple of env vars are available to effect usage of this eclass |
| 17 |
# These are as follows: |
| 18 |
# |
| 19 |
# K_USEPV - When setting the EXTRAVERSION variable, it should |
| 20 |
# add PV to the end. |
| 21 |
# this is useful for thigns like wolk. IE: |
| 22 |
# EXTRAVERSION would be something like : -wolk-4.19-r1 |
| 23 |
# K_NOSETEXTRAVERSION - if this is set then EXTRAVERSION will not be |
| 24 |
# automatically set within the kernel Makefile |
| 25 |
# K_NOUSENAME - if this is set then EXTRAVERSION will not include the |
| 26 |
# first part of ${PN} in EXTRAVERSION |
| 27 |
# K_PREPATCHED - if the patchset is prepatched (ie: mm-sources, |
| 28 |
# ck-sources, ac-sources) it will use PR (ie: -r5) as |
| 29 |
# the patchset version for |
| 30 |
# and not use it as a true package revision |
| 31 |
# K_EXTRAEINFO - this is a new-line seperated list of einfo displays in |
| 32 |
# postinst and can be used to carry additional postinst |
| 33 |
# messages |
| 34 |
# K_EXTRAEWARN - same as K_EXTRAEINFO except ewarn's instead of einfo's |
| 35 |
# K_SYMLINK - if this is set, then forcably create symlink anyway |
| 36 |
# |
| 37 |
# K_DEFCONFIG - Allow specifying a different defconfig target. |
| 38 |
# If length zero, defaults to "defconfig". |
| 39 |
# K_WANT_GENPATCHES - Apply genpatches to kernel source. Provide any |
| 40 |
# combination of "base" and "extras" |
| 41 |
# K_GENPATCHES_VER - The version of the genpatches tarball(s) to apply. |
| 42 |
# A value of "5" would apply genpatches-2.6.12-5 to |
| 43 |
# my-sources-2.6.12.ebuild |
| 44 |
|
| 45 |
# H_SUPPORTEDARCH - this should be a space separated list of ARCH's which |
| 46 |
# can be supported by the headers ebuild |
| 47 |
|
| 48 |
# UNIPATCH_LIST - space delimetered list of patches to be applied to the |
| 49 |
# kernel |
| 50 |
# UNIPATCH_EXCLUDE - an addition var to support exlusion based completely |
| 51 |
# on "<passedstring>*" and not "<passedno#>_*" |
| 52 |
# - this should _NOT_ be used from the ebuild as this is |
| 53 |
# reserved for end users passing excludes from the cli |
| 54 |
# UNIPATCH_DOCS - space delimemeted list of docs to be installed to |
| 55 |
# the doc dir |
| 56 |
# UNIPATCH_STRICTORDER - if this is set places patches into directories of |
| 57 |
# order, so they are applied in the order passed |
| 58 |
|
| 59 |
inherit toolchain-funcs versionator multilib |
| 60 |
ECLASS="kernel-2" |
| 61 |
INHERITED="$INHERITED $ECLASS" |
| 62 |
EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install \ |
| 63 |
pkg_preinst pkg_postinst pkg_prerm |
| 64 |
|
| 65 |
export CTARGET=${CTARGET:-${CHOST}} |
| 66 |
if [[ ${CTARGET} == ${CHOST} && ${CATEGORY/cross-} != ${CATEGORY} ]]; then |
| 67 |
export CTARGET=${CATEGORY/cross-} |
| 68 |
fi |
| 69 |
|
| 70 |
HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" |
| 71 |
LICENSE="GPL-2" |
| 72 |
|
| 73 |
# set LINUX_HOSTCFLAGS if not already set |
| 74 |
[ -z "$LINUX_HOSTCFLAGS" ] && \ |
| 75 |
LINUX_HOSTCFLAGS="-Wall -Wstrict-prototypes -Os -fomit-frame-pointer -I${S}/include" |
| 76 |
|
| 77 |
#Eclass functions only from here onwards ... |
| 78 |
#============================================================== |
| 79 |
handle_genpatches() { |
| 80 |
local tarball |
| 81 |
[[ -z ${K_WANT_GENPATCHES} || -z ${K_GENPATCHES_VER} ]] && return -1 |
| 82 |
|
| 83 |
for i in ${K_WANT_GENPATCHES} ; do |
| 84 |
tarball="genpatches-${OKV}-${K_GENPATCHES_VER}.${i}.tar.bz2" |
| 85 |
GENPATCHES_URI="${GENPATCHES_URI} mirror://gentoo/${tarball}" |
| 86 |
UNIPATCH_LIST_GENPATCHES="${UNIPATCH_LIST_GENPATCHES} ${DISTDIR}/${tarball}" |
| 87 |
done |
| 88 |
} |
| 89 |
|
| 90 |
detect_version() { |
| 91 |
# this function will detect and set |
| 92 |
# - OKV: Original Kernel Version (2.6.0/2.6.0-test11) |
| 93 |
# - KV: Kernel Version (2.6.0-gentoo/2.6.0-test11-gentoo-r1) |
| 94 |
# - EXTRAVERSION: The additional version appended to OKV (-gentoo/-gentoo-r1) |
| 95 |
|
| 96 |
if [[ -n ${KV_FULL} ]]; then |
| 97 |
# we will set this for backwards compatibility. |
| 98 |
KV=${KV_FULL} |
| 99 |
|
| 100 |
# we know KV_FULL so lets stop here. but not without resetting S |
| 101 |
S=${WORKDIR}/linux-${KV_FULL} |
| 102 |
return |
| 103 |
fi |
| 104 |
|
| 105 |
# CKV is used as a comparison kernel version, which is used when |
| 106 |
# PV doesnt reflect the genuine kernel version. |
| 107 |
# this gets set to the portage style versioning. ie: |
| 108 |
# CKV=2.6.11_rc4 |
| 109 |
CKV=${CKV:-${PV}} |
| 110 |
OKV=${OKV:-${CKV}} |
| 111 |
OKV=${OKV/_beta/-test} |
| 112 |
OKV=${OKV/_rc/-rc} |
| 113 |
OKV=${OKV/-r*} |
| 114 |
OKV=${OKV/_p*} |
| 115 |
|
| 116 |
KV_MAJOR=$(get_version_component_range 1 ${OKV}) |
| 117 |
KV_MINOR=$(get_version_component_range 2 ${OKV}) |
| 118 |
KV_PATCH=$(get_version_component_range 3 ${OKV}) |
| 119 |
|
| 120 |
if [[ ${KV_MAJOR}${KV_MINOR}${KV_PATCH} -ge 269 ]]; then |
| 121 |
KV_EXTRA=$(get_version_component_range 4- ${OKV}) |
| 122 |
KV_EXTRA=${KV_EXTRA/[-_]*} |
| 123 |
else |
| 124 |
KV_PATCH=$(get_version_component_range 3- ${OKV}) |
| 125 |
fi |
| 126 |
KV_PATCH=${KV_PATCH/[-_]*} |
| 127 |
|
| 128 |
KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.bz2" |
| 129 |
|
| 130 |
RELEASE=${CKV/${OKV}} |
| 131 |
RELEASE=${RELEASE/_beta} |
| 132 |
RELEASE=${RELEASE/_rc/-rc} |
| 133 |
RELEASE=${RELEASE/_pre/-pre} |
| 134 |
kernel_is ge 2 6 && RELEASE=${RELEASE/-pre/-bk} |
| 135 |
RELEASETYPE=${RELEASE//[0-9]} |
| 136 |
|
| 137 |
# Now we know that RELEASE is the -rc/-bk |
| 138 |
# and RELEASETYPE is the same but with its numerics stripped |
| 139 |
# we can work on better sorting EXTRAVERSION. |
| 140 |
# first of all, we add the release |
| 141 |
EXTRAVERSION="${RELEASE}" |
| 142 |
[[ -n ${KV_EXTRA} ]] && EXTRAVERSION=".${KV_EXTRA}${EXTRAVERSION}" |
| 143 |
|
| 144 |
if [[ -n ${K_PREPATCHED} ]]; then |
| 145 |
EXTRAVERSION="${EXTRAVERSION}-${PN/-*}${PR/r}" |
| 146 |
elif [[ "${ETYPE}" = "sources" ]]; then |
| 147 |
# For some sources we want to use the PV in the extra version |
| 148 |
# This is because upstream releases with a completely different |
| 149 |
# versioning scheme. |
| 150 |
case ${PN/-*} in |
| 151 |
wolk) K_USEPV=1;; |
| 152 |
vserver) K_USEPV=1;; |
| 153 |
esac |
| 154 |
|
| 155 |
[[ -z ${K_NOUSENAME} ]] && EXTRAVERSION="${EXTRAVERSION}-${PN/-*}" |
| 156 |
[[ -n ${K_USEPV} ]] && EXTRAVERSION="${EXTRAVERSION}-${PV//_/-}" |
| 157 |
[[ -n ${PR//r0} ]] && EXTRAVERSION="${EXTRAVERSION}-${PR}" |
| 158 |
fi |
| 159 |
|
| 160 |
# The only messing around which should actually effect this is for KV_EXTRA |
| 161 |
# since this has to limit OKV to MAJ.MIN.PAT and strip EXTRA off else |
| 162 |
# KV_FULL evaluates to MAJ.MIN.PAT.EXT.EXT after EXTRAVERSION |
| 163 |
if [[ -n ${KV_EXTRA} ]]; then |
| 164 |
OKV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}" |
| 165 |
KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/patch-${CKV}.bz2 |
| 166 |
mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}.tar.bz2" |
| 167 |
UNIPATCH_LIST_DEFAULT="${DISTDIR}/patch-${CKV}.bz2" |
| 168 |
fi |
| 169 |
|
| 170 |
# We need to set this using OKV, but we need to set it before we do any |
| 171 |
# messing around with OKV based on RELEASETYPE |
| 172 |
KV_FULL=${OKV}${EXTRAVERSION} |
| 173 |
|
| 174 |
# we will set this for backwards compatibility. |
| 175 |
S=${WORKDIR}/linux-${KV_FULL} |
| 176 |
KV=${KV_FULL} |
| 177 |
|
| 178 |
# -rc-bk pulls can be achieved by specifying CKV |
| 179 |
# for example: |
| 180 |
# CKV="2.6.11_rc3_pre2" |
| 181 |
# will pull: |
| 182 |
# linux-2.6.10.tar.bz2 & patch-2.6.11-rc3.bz2 & patch-2.6.11-rc3-bk2.bz2 |
| 183 |
|
| 184 |
if [[ ${RELEASETYPE} == -rc ]] || [[ ${RELEASETYPE} == -pre ]]; then |
| 185 |
OKV="${KV_MAJOR}.${KV_MINOR}.$((${KV_PATCH} - 1))" |
| 186 |
KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/testing/patch-${CKV//_/-}.bz2 |
| 187 |
mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.bz2" |
| 188 |
UNIPATCH_LIST_DEFAULT="${DISTDIR}/patch-${CKV//_/-}.bz2" |
| 189 |
fi |
| 190 |
|
| 191 |
if [[ ${RELEASETYPE} == -bk ]]; then |
| 192 |
KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/snapshots/patch-${OKV}${RELEASE}.bz2 |
| 193 |
mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.bz2" |
| 194 |
UNIPATCH_LIST_DEFAULT="${DISTDIR}/patch-${OKV}${RELEASE}.bz2" |
| 195 |
fi |
| 196 |
|
| 197 |
if [[ ${RELEASETYPE} == -rc-bk ]]; then |
| 198 |
OKV="${KV_MAJOR}.${KV_MINOR}.$((${KV_PATCH} - 1))" |
| 199 |
KERNEL_URI="mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/snapshots/patch-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${RELEASE}.bz2 |
| 200 |
mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/testing/patch-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${RELEASE/-bk*}.bz2 |
| 201 |
mirror://kernel/linux/kernel/v${KV_MAJOR}.${KV_MINOR}/linux-${OKV}.tar.bz2" |
| 202 |
UNIPATCH_LIST_DEFAULT="${DISTDIR}/patch-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${RELEASE/-bk*}.bz2 ${DISTDIR}/patch-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}${RELEASE}.bz2" |
| 203 |
fi |
| 204 |
|
| 205 |
handle_genpatches |
| 206 |
} |
| 207 |
|
| 208 |
kernel_is() { |
| 209 |
[[ -z ${OKV} ]] && detect_version |
| 210 |
local operator test value x=0 y=0 z=0 |
| 211 |
|
| 212 |
case ${1} in |
| 213 |
lt) operator="-lt"; shift;; |
| 214 |
gt) operator="-gt"; shift;; |
| 215 |
le) operator="-le"; shift;; |
| 216 |
ge) operator="-ge"; shift;; |
| 217 |
eq) operator="-eq"; shift;; |
| 218 |
*) operator="-eq";; |
| 219 |
esac |
| 220 |
|
| 221 |
for x in ${@}; do |
| 222 |
for((y=0; y<$((3 - ${#x})); y++)); do value="${value}0"; done |
| 223 |
value="${value}${x}" |
| 224 |
z=$((${z} + 1)) |
| 225 |
|
| 226 |
case ${z} in |
| 227 |
1) for((y=0; y<$((3 - ${#KV_MAJOR})); y++)); do test="${test}0"; done; |
| 228 |
test="${test}${KV_MAJOR}";; |
| 229 |
2) for((y=0; y<$((3 - ${#KV_MINOR})); y++)); do test="${test}0"; done; |
| 230 |
test="${test}${KV_MINOR}";; |
| 231 |
3) for((y=0; y<$((3 - ${#KV_PATCH})); y++)); do test="${test}0"; done; |
| 232 |
test="${test}${KV_PATCH}";; |
| 233 |
*) die "Error in kernel-2_kernel_is(): Too many parameters.";; |
| 234 |
esac |
| 235 |
done |
| 236 |
|
| 237 |
[ ${test} ${operator} ${value} ] && return 0 || return 1 |
| 238 |
} |
| 239 |
|
| 240 |
kernel_is_2_4() { |
| 241 |
kernel_is 2 4 |
| 242 |
} |
| 243 |
|
| 244 |
kernel_is_2_6() { |
| 245 |
kernel_is 2 6 || kernel_is 2 5 |
| 246 |
} |
| 247 |
|
| 248 |
kernel_header_destdir() { |
| 249 |
[[ ${CTARGET} == ${CHOST} ]] \ |
| 250 |
&& echo /usr/include \ |
| 251 |
|| echo /usr/${CTARGET}/include |
| 252 |
} |
| 253 |
|
| 254 |
# Capture the sources type and set DEPENDs |
| 255 |
if [[ ${ETYPE} == sources ]]; then |
| 256 |
DEPEND="!build? ( sys-apps/sed |
| 257 |
>=sys-devel/binutils-2.11.90.0.31 ) |
| 258 |
doc? ( app-text/docbook-sgml-utils |
| 259 |
app-text/xmlto )" |
| 260 |
RDEPEND="${DEPEND} |
| 261 |
!build? ( >=sys-libs/ncurses-5.2 |
| 262 |
sys-devel/make )" |
| 263 |
|
| 264 |
PROVIDE="virtual/linux-sources" |
| 265 |
kernel_is gt 2 4 && PROVIDE="${PROVIDE} virtual/alsa" |
| 266 |
SLOT="${PVR}" |
| 267 |
DESCRIPTION="Sources for the Linux kernel" |
| 268 |
IUSE="${IUSE} symlink build doc" |
| 269 |
elif [[ ${ETYPE} == headers ]]; then |
| 270 |
DESCRIPTION="Linux system headers" |
| 271 |
IUSE="${IUSE}" |
| 272 |
|
| 273 |
if [[ ${CTARGET} = ${CHOST} ]]; then |
| 274 |
DEPEND="!virtual/os-headers" |
| 275 |
PROVIDE="virtual/kernel virtual/os-headers" |
| 276 |
SLOT="0" |
| 277 |
else |
| 278 |
SLOT="${CTARGET}" |
| 279 |
fi |
| 280 |
else |
| 281 |
eerror "Unknown ETYPE=\"${ETYPE}\", must be \"sources\" or \"headers\"" |
| 282 |
die "Unknown ETYPE=\"${ETYPE}\", must be \"sources\" or \"headers\"" |
| 283 |
fi |
| 284 |
|
| 285 |
# Unpack functions |
| 286 |
#============================================================== |
| 287 |
unpack_2_4() { |
| 288 |
# Kernel ARCH != portage ARCH |
| 289 |
local ARCH=$(tc-arch-kernel) |
| 290 |
|
| 291 |
cd ${S} |
| 292 |
# this file is required for other things to build properly, |
| 293 |
# so we autogenerate it |
| 294 |
make mrproper || die "make mrproper died" |
| 295 |
make include/linux/version.h || die "make include/linux/version.h failed" |
| 296 |
echo ">>> version.h compiled successfully." |
| 297 |
|
| 298 |
ARCH=$(tc-arch) |
| 299 |
} |
| 300 |
|
| 301 |
universal_unpack() { |
| 302 |
cd ${WORKDIR} |
| 303 |
unpack linux-${OKV}.tar.bz2 |
| 304 |
if [[ "${OKV}" != "${KV_FULL}" ]]; then |
| 305 |
mv linux-${OKV} linux-${KV_FULL} \ |
| 306 |
|| die "Unable to move source tree to ${KV_FULL}." |
| 307 |
fi |
| 308 |
cd ${S} |
| 309 |
|
| 310 |
# remove all backup files |
| 311 |
find . -iname "*~" -exec rm {} \; 2> /dev/null |
| 312 |
|
| 313 |
# fix a problem on ppc where TOUT writes to /usr/src/linux breaking sandbox |
| 314 |
use ppc && \ |
| 315 |
sed -ie 's|TOUT := .tmp_gas_check|TOUT := $(T).tmp_gas_check|' \ |
| 316 |
${S}/arch/ppc/Makefile |
| 317 |
} |
| 318 |
|
| 319 |
unpack_set_extraversion() { |
| 320 |
cd ${S} |
| 321 |
sed -i -e "s:^\(EXTRAVERSION =\).*:\1 ${EXTRAVERSION}:" Makefile |
| 322 |
cd ${OLDPWD} |
| 323 |
} |
| 324 |
|
| 325 |
# Should be done after patches have been applied |
| 326 |
# Otherwise patches that modify the same area of Makefile will fail |
| 327 |
unpack_fix_install_path() { |
| 328 |
cd ${S} |
| 329 |
sed -i -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' Makefile |
| 330 |
} |
| 331 |
|
| 332 |
unpack_fix_docbook() { |
| 333 |
if [[ -d ${S}/Documentation/DocBook ]]; then |
| 334 |
cd ${S}/Documentation/DocBook |
| 335 |
sed -ie "s:db2:docbook2:g" Makefile |
| 336 |
cd ${OLDPWD} |
| 337 |
fi |
| 338 |
} |
| 339 |
|
| 340 |
# Compile Functions |
| 341 |
#============================================================== |
| 342 |
compile_headers() { |
| 343 |
# Since KBUILD_OUTPUT shouldnt be used when compiling headers, lets unset it |
| 344 |
# if it exists. |
| 345 |
[[ -n ${KBUILD_OUTPUT} ]] && unset KBUILD_OUTPUT |
| 346 |
|
| 347 |
# if we couldnt obtain HOSTCFLAGS from the Makefile, |
| 348 |
# then set it to something sane |
| 349 |
local HOSTCFLAGS=$(getfilevar HOSTCFLAGS ${S}/Makefile) |
| 350 |
HOSTCFLAGS=${HOSTCFLAGS:--Wall -Wstrict-prototypes -O2 -fomit-frame-pointer} |
| 351 |
|
| 352 |
# Kernel ARCH != portage ARCH |
| 353 |
local KARCH=$(tc-arch-kernel) |
| 354 |
|
| 355 |
# When cross-compiling, we need to set the ARCH/CROSS_COMPILE |
| 356 |
# variables properly or bad things happen ! |
| 357 |
local xmakeopts="ARCH=${KARCH}" |
| 358 |
if [[ ${CTARGET} != ${CHOST} ]]; then |
| 359 |
xmakeopts="${xmakeopts} CROSS_COMPILE=${CTARGET}-" |
| 360 |
elif type -p ${CHOST}-ar; then |
| 361 |
xmakeopts="${xmakeopts} CROSS_COMPILE=${CHOST}-" |
| 362 |
fi |
| 363 |
|
| 364 |
if kernel_is 2 4; then |
| 365 |
yes "" | make oldconfig ${xmakeopts} |
| 366 |
echo ">>> make oldconfig complete" |
| 367 |
use sparc && make dep ${xmakeopts} |
| 368 |
elif kernel_is 2 6; then |
| 369 |
# autoconf.h isnt generated unless it already exists. plus, we have |
| 370 |
# no guarantee that any headers are installed on the system... |
| 371 |
[[ -f ${ROOT}/usr/include/linux/autoconf.h ]] \ |
| 372 |
|| touch include/linux/autoconf.h |
| 373 |
|
| 374 |
# if K_DEFCONFIG isn't set, force to "defconfig" |
| 375 |
# needed by mips |
| 376 |
if [[ -z ${K_DEFCONFIG} ]]; then |
| 377 |
K_DEFCONFIG="defconfig" |
| 378 |
fi |
| 379 |
|
| 380 |
# if there arent any installed headers, then there also isnt an asm |
| 381 |
# symlink in /usr/include/, and make defconfig will fail, so we have |
| 382 |
# to force an include path with $S. |
| 383 |
HOSTCFLAGS="${HOSTCFLAGS} -I${S}/include/" |
| 384 |
ln -sf asm-${KARCH} "${S}"/include/asm |
| 385 |
make ${K_DEFCONFIG} HOSTCFLAGS="${HOSTCFLAGS}" ${xmakeopts} || die "defconfig failed" |
| 386 |
make prepare HOSTCFLAGS="${HOSTCFLAGS}" ${xmakeopts} || die "prepare failed" |
| 387 |
make prepare-all HOSTCFLAGS="${HOSTCFLAGS}" ${xmakeopts} || die "prepare failed" |
| 388 |
fi |
| 389 |
} |
| 390 |
|
| 391 |
compile_manpages() { |
| 392 |
einfo "Making manpages ..." |
| 393 |
env -u ARCH make mandocs |
| 394 |
} |
| 395 |
|
| 396 |
# install functions |
| 397 |
#============================================================== |
| 398 |
install_universal() { |
| 399 |
#fix silly permissions in tarball |
| 400 |
cd ${WORKDIR} |
| 401 |
chown -R root:root * |
| 402 |
chmod -R a+r-w+X,u+w * |
| 403 |
cd ${OLDPWD} |
| 404 |
} |
| 405 |
|
| 406 |
install_headers() { |
| 407 |
local ddir=$(kernel_header_destdir) |
| 408 |
|
| 409 |
cd ${S} |
| 410 |
dodir ${ddir}/linux |
| 411 |
cp -ax ${S}/include/linux/* ${D}/${ddir}/linux |
| 412 |
rm -rf ${D}/${ddir}/linux/modules |
| 413 |
|
| 414 |
# Handle multilib headers |
| 415 |
case $(tc-arch-kernel) in |
| 416 |
sparc64) |
| 417 |
dodir ${ddir}/asm-sparc |
| 418 |
cp -ax ${S}/include/asm-sparc/* ${D}/${ddir}/asm-sparc |
| 419 |
|
| 420 |
dodir ${ddir}/asm-sparc64 |
| 421 |
cp -ax ${S}/include/asm-sparc64/* ${D}/${ddir}/asm-sparc64 |
| 422 |
|
| 423 |
create_ml_includes ${ddir}/asm !__arch64__:${ddir}/asm-sparc __arch64__:${ddir}/asm-sparc64 |
| 424 |
;; |
| 425 |
x86_64) |
| 426 |
dodir ${ddir}/asm-i386 |
| 427 |
cp -ax ${S}/include/asm-i386/* ${D}/${ddir}/asm-i386 |
| 428 |
|
| 429 |
dodir ${ddir}/asm-x86_64 |
| 430 |
cp -ax ${S}/include/asm-x86_64/* ${D}/${ddir}/asm-x86_64 |
| 431 |
|
| 432 |
create_ml_includes ${ddir}/asm __i386__:${ddir}/asm-i386 __x86_64__:${ddir}/asm-x86_64 |
| 433 |
;; |
| 434 |
ppc64) |
| 435 |
dodir ${ddir}/asm-ppc |
| 436 |
cp -ax ${S}/include/asm-ppc/* ${D}/${ddir}/asm-ppc |
| 437 |
|
| 438 |
dodir ${ddir}/asm-ppc64 |
| 439 |
cp -ax ${S}/include/asm-ppc64/* ${D}/${ddir}/asm-ppc64 |
| 440 |
|
| 441 |
create_ml_includes ${ddir}/asm !__powerpc64__:${ddir}/asm-ppc __powerpc64__:${ddir}/asm-ppc64 |
| 442 |
;; |
| 443 |
arm) |
| 444 |
dodir ${ddir}/asm |
| 445 |
cp -ax ${S}/include/asm/* ${D}/${ddir}/asm |
| 446 |
[[ ! -e ${D}/${ddir}/asm/arch ]] && ln -s arch-ebsa285 ${D}/${ddir}/asm/arch |
| 447 |
[[ ! -e ${D}/${ddir}/asm/proc ]] && ln -s proc-armv ${D}/${ddir}/asm/proc |
| 448 |
;; |
| 449 |
*) |
| 450 |
dodir ${ddir}/asm |
| 451 |
cp -ax ${S}/include/asm/* ${D}/${ddir}/asm |
| 452 |
;; |
| 453 |
esac |
| 454 |
|
| 455 |
if kernel_is 2 6; then |
| 456 |
dodir ${ddir}/asm-generic |
| 457 |
cp -ax ${S}/include/asm-generic/* ${D}/${ddir}/asm-generic |
| 458 |
fi |
| 459 |
|
| 460 |
# clean up |
| 461 |
find "${D}" -name '*.orig' -exec rm -f {} \; |
| 462 |
|
| 463 |
cd ${OLDPWD} |
| 464 |
} |
| 465 |
|
| 466 |
install_sources() { |
| 467 |
local doc docs file |
| 468 |
|
| 469 |
cd ${S} |
| 470 |
dodir /usr/src |
| 471 |
echo ">>> Copying sources ..." |
| 472 |
|
| 473 |
file="$(find ${WORKDIR} -iname "docs" -type d)" |
| 474 |
if [[ -n ${file} ]]; then |
| 475 |
for file in $(find ${file} -type f); do |
| 476 |
echo "${file//*docs\/}" >> ${S}/patches.txt |
| 477 |
echo "===================================================" >> ${S}/patches.txt |
| 478 |
cat ${file} >> ${S}/patches.txt |
| 479 |
echo "===================================================" >> ${S}/patches.txt |
| 480 |
echo "" >> ${S}/patches.txt |
| 481 |
done |
| 482 |
fi |
| 483 |
|
| 484 |
if [[ ! -f ${S}/patches.txt ]]; then |
| 485 |
# patches.txt is empty so lets use our ChangeLog |
| 486 |
[[ -f ${FILESDIR}/../ChangeLog ]] && \ |
| 487 |
echo "Please check the ebuild ChangeLog for more details." \ |
| 488 |
> ${S}/patches.txt |
| 489 |
fi |
| 490 |
|
| 491 |
for doc in ${UNIPATCH_DOCS}; do [[ -f ${doc} ]] && docs="${docs} ${doc}"; done |
| 492 |
if [[ -f ${S}/patches.txt ]]; then docs="${docs} ${S}/patches.txt"; fi |
| 493 |
use doc && ! use arm && ! use s390 && install_manpages |
| 494 |
dodoc ${docs} |
| 495 |
|
| 496 |
mv ${WORKDIR}/linux* ${D}/usr/src |
| 497 |
} |
| 498 |
|
| 499 |
install_manpages() { |
| 500 |
kernel_is lt 2 5 && return |
| 501 |
sed -ie "s#/usr/local/man#${D}/usr/share/man#g" \ |
| 502 |
scripts/makeman Documentation/DocBook/Makefile |
| 503 |
ebegin "Installing manpages" |
| 504 |
env -u ARCH make installmandocs |
| 505 |
eend $? |
| 506 |
sed -ie "s#${D}/usr/share/man#/usr/local/man#g" \ |
| 507 |
scripts/makeman Documentation/DocBook/Makefile |
| 508 |
} |
| 509 |
|
| 510 |
# pkg_preinst functions |
| 511 |
#============================================================== |
| 512 |
preinst_headers() { |
| 513 |
local ddir=$(kernel_header_destdir) |
| 514 |
[[ -L ${ddir}/linux ]] && rm ${ddir}/linux |
| 515 |
[[ -L ${ddir}/asm ]] && rm ${ddir}/asm |
| 516 |
} |
| 517 |
|
| 518 |
# pkg_postinst functions |
| 519 |
#============================================================== |
| 520 |
postinst_sources() { |
| 521 |
local MAKELINK=0 |
| 522 |
|
| 523 |
# if we have USE=symlink, then force K_SYMLINK=1 |
| 524 |
use symlink && K_SYMLINK=1 |
| 525 |
|
| 526 |
# if we are to forcably symlink, delete it if it already exists first. |
| 527 |
if [[ -n ${K_SYMLINK} ]]; then |
| 528 |
[[ -h ${ROOT}usr/src/linux ]] && rm ${ROOT}usr/src/linux |
| 529 |
MAKELINK=1 |
| 530 |
fi |
| 531 |
|
| 532 |
# if the link doesnt exist, lets create it |
| 533 |
[[ ! -h ${ROOT}usr/src/linux ]] && MAKELINK=1 |
| 534 |
|
| 535 |
if [[ ${MAKELINK} == 1 ]]; then |
| 536 |
cd ${ROOT}usr/src |
| 537 |
ln -sf linux-${KV_FULL} linux |
| 538 |
cd ${OLDPWD} |
| 539 |
fi |
| 540 |
|
| 541 |
# Don't forget to make directory for sysfs |
| 542 |
[[ ! -d ${ROOT}sys ]] && kernel_is 2 6 && mkdir ${ROOT}sys |
| 543 |
|
| 544 |
echo |
| 545 |
einfo "After installing a new kernel of any version, it is important" |
| 546 |
einfo "that you have the appropriate /etc/modules.autoload.d/kernel-X.Y" |
| 547 |
einfo "created (X.Y is the first 2 parts of your new kernel version)" |
| 548 |
echo |
| 549 |
einfo "For example, this kernel will require:" |
| 550 |
einfo "/etc/modules.autoload.d/kernel-${KV_MAJOR}.${KV_MINOR}" |
| 551 |
echo |
| 552 |
einfo "If you are upgrading from a previous kernel, you may be interested" |
| 553 |
einfo "in the following documents:" |
| 554 |
einfo " - General upgrade guide: http://www.gentoo.org/doc/en/kernel-upgrade.xml" |
| 555 |
kernel_is_2_6 && einfo " - 2.4 to 2.6 migration guide: http://www.gentoo.org/doc/en/migration-to-2.6.xml" |
| 556 |
echo |
| 557 |
|
| 558 |
# if K_EXTRAEINFO is set then lets display it now |
| 559 |
if [[ -n ${K_EXTRAEINFO} ]]; then |
| 560 |
echo ${K_EXTRAEINFO} | fmt | |
| 561 |
while read -s ELINE; do einfo "${ELINE}"; done |
| 562 |
fi |
| 563 |
|
| 564 |
# if K_EXTRAEWARN is set then lets display it now |
| 565 |
if [[ -n ${K_EXTRAEWARN} ]]; then |
| 566 |
echo ${K_EXTRAEWARN} | fmt | |
| 567 |
while read -s ELINE; do ewarn "${ELINE}"; done |
| 568 |
fi |
| 569 |
} |
| 570 |
|
| 571 |
postinst_headers() { |
| 572 |
einfo "Kernel headers are usually only used when recompiling glibc, as such, following the installation" |
| 573 |
einfo "of newer headers, it is advised that you re-merge glibc as follows:" |
| 574 |
einfo "emerge glibc" |
| 575 |
einfo "Failure to do so will cause glibc to not make use of newer features present in the updated kernel" |
| 576 |
einfo "headers." |
| 577 |
} |
| 578 |
|
| 579 |
# pkg_setup functions |
| 580 |
#============================================================== |
| 581 |
setup_headers() { |
| 582 |
[[ -z ${H_SUPPORTEDARCH} ]] && H_SUPPORTEDARCH=${PN/-*/} |
| 583 |
for i in ${H_SUPPORTEDARCH}; do |
| 584 |
[[ $(tc-arch) == "${i}" ]] && H_ACCEPT_ARCH="yes" |
| 585 |
done |
| 586 |
|
| 587 |
if [[ ${H_ACCEPT_ARCH} != "yes" ]]; then |
| 588 |
echo |
| 589 |
eerror "This version of ${PN} does not support $(tc-arch)." |
| 590 |
eerror "Please merge the appropriate sources, in most cases" |
| 591 |
eerror "(but not all) this will be called $(tc-arch)-headers." |
| 592 |
die "Package unsupported for $(tc-arch)" |
| 593 |
fi |
| 594 |
} |
| 595 |
|
| 596 |
# unipatch |
| 597 |
#============================================================== |
| 598 |
unipatch() { |
| 599 |
local i x y z extention PIPE_CMD UNIPATCH_DROP KPATCH_DIR PATCH_DEPTH ELINE |
| 600 |
local STRICT_COUNT PATCH_LEVEL myLC_ALL myLANG |
| 601 |
|
| 602 |
# set to a standard locale to ensure sorts are ordered properly. |
| 603 |
myLC_ALL="${LC_ALL}" |
| 604 |
myLANG="${LANG}" |
| 605 |
LC_ALL="C" |
| 606 |
LANG="" |
| 607 |
|
| 608 |
[ -z "${KPATCH_DIR}" ] && KPATCH_DIR="${WORKDIR}/patches/" |
| 609 |
[ ! -d ${KPATCH_DIR} ] && mkdir -p ${KPATCH_DIR} |
| 610 |
|
| 611 |
# We're gonna need it when doing patches with a predefined patchlevel |
| 612 |
shopt -s extglob |
| 613 |
|
| 614 |
# This function will unpack all passed tarballs, add any passed patches, and remove any passed patchnumbers |
| 615 |
# usage can be either via an env var or by params |
| 616 |
# although due to the nature we pass this within this eclass |
| 617 |
# it shall be by param only. |
| 618 |
# -z "${UNIPATCH_LIST}" ] && UNIPATCH_LIST="${@}" |
| 619 |
UNIPATCH_LIST="${@}" |
| 620 |
|
| 621 |
#unpack any passed tarballs |
| 622 |
for i in ${UNIPATCH_LIST}; do |
| 623 |
if [ -n "$(echo ${i} | grep -e "\.tar" -e "\.tbz" -e "\.tgz")" ]; then |
| 624 |
extention=${i/*./} |
| 625 |
extention=${extention/:*/} |
| 626 |
case ${extention} in |
| 627 |
tbz2) PIPE_CMD="tar -xvjf";; |
| 628 |
bz2) PIPE_CMD="tar -xvjf";; |
| 629 |
tgz) PIPE_CMD="tar -xvzf";; |
| 630 |
gz) PIPE_CMD="tar -xvzf";; |
| 631 |
*) eerror "Unrecognized tarball compression" |
| 632 |
die "Unrecognized tarball compression";; |
| 633 |
esac |
| 634 |
|
| 635 |
if [ -n "${UNIPATCH_STRICTORDER}" ]; then |
| 636 |
unset z |
| 637 |
STRICT_COUNT=$((10#${STRICT_COUNT} + 1)) |
| 638 |
for((y=0; y<$((6 - ${#STRICT_COUNT})); y++)); |
| 639 |
do z="${z}0"; |
| 640 |
done |
| 641 |
PATCH_ORDER="${z}${STRICT_COUNT}" |
| 642 |
|
| 643 |
mkdir -p ${KPATCH_DIR}/${PATCH_ORDER}/ |
| 644 |
${PIPE_CMD} ${i/:*/} -C ${KPATCH_DIR}/${PATCH_ORDER}/ 1>/dev/null |
| 645 |
else |
| 646 |
${PIPE_CMD} ${i/:*/} -C ${KPATCH_DIR} 1>/dev/null |
| 647 |
fi |
| 648 |
|
| 649 |
if [ $? == 0 ]; then |
| 650 |
einfo "${i/*\//} unpacked" |
| 651 |
[ -n "$(echo ${i} | grep ':')" ] && echo ">>> Strict patch levels not currently supported for tarballed patchsets" |
| 652 |
else |
| 653 |
eerror "Failed to unpack ${i/:*/}" |
| 654 |
die "unable to unpack patch tarball" |
| 655 |
fi |
| 656 |
else |
| 657 |
extention=${i/*./} |
| 658 |
extention=${extention/:*/} |
| 659 |
PIPE_CMD="" |
| 660 |
case ${extention} in |
| 661 |
bz2) PIPE_CMD="bzip2 -dc";; |
| 662 |
patch) PIPE_CMD="cat";; |
| 663 |
diff) PIPE_CMD="cat";; |
| 664 |
gz|Z|z) PIPE_CMD="gzip -dc";; |
| 665 |
ZIP|zip) PIPE_CMD="unzip -p";; |
| 666 |
*) UNIPATCH_DROP="${UNIPATCH_DROP} ${i/:*/}";; |
| 667 |
esac |
| 668 |
|
| 669 |
PATCH_LEVEL=${i/*([^:])?(:)} |
| 670 |
i=${i/:*/} |
| 671 |
x=${i/*\//} |
| 672 |
x=${x/\.${extention}/} |
| 673 |
|
| 674 |
if [ -n "${PIPE_CMD}" ]; then |
| 675 |
if [ ! -r "${i}" ]; then |
| 676 |
echo |
| 677 |
eerror "FATAL: unable to locate:" |
| 678 |
eerror "${i}" |
| 679 |
eerror "for read-only. The file either has incorrect permissions" |
| 680 |
eerror "or does not exist." |
| 681 |
die Unable to locate ${i} |
| 682 |
fi |
| 683 |
|
| 684 |
if [ -n "${UNIPATCH_STRICTORDER}" ]; then |
| 685 |
unset z |
| 686 |
STRICT_COUNT=$((10#${STRICT_COUNT} + 1)) |
| 687 |
for((y=0; y<$((6 - ${#STRICT_COUNT})); y++)); |
| 688 |
do z="${z}0"; |
| 689 |
done |
| 690 |
PATCH_ORDER="${z}${STRICT_COUNT}" |
| 691 |
|
| 692 |
mkdir -p ${KPATCH_DIR}/${PATCH_ORDER}/ |
| 693 |
$(${PIPE_CMD} ${i} > ${KPATCH_DIR}/${PATCH_ORDER}/${x}.patch${PATCH_LEVEL}) |
| 694 |
else |
| 695 |
$(${PIPE_CMD} ${i} > ${KPATCH_DIR}/${x}.patch${PATCH_LEVEL}) |
| 696 |
fi |
| 697 |
fi |
| 698 |
fi |
| 699 |
done |
| 700 |
|
| 701 |
#populate KPATCH_DIRS so we know where to look to remove the excludes |
| 702 |
x=${KPATCH_DIR} |
| 703 |
KPATCH_DIR="" |
| 704 |
for i in $(find ${x} -type d | sort -n); do |
| 705 |
KPATCH_DIR="${KPATCH_DIR} ${i}" |
| 706 |
done |
| 707 |
|
| 708 |
#so now lets get rid of the patchno's we want to exclude |
| 709 |
UNIPATCH_DROP="${UNIPATCH_EXCLUDE} ${UNIPATCH_DROP}" |
| 710 |
for i in ${UNIPATCH_DROP}; do |
| 711 |
ebegin "Excluding Patch #${i}" |
| 712 |
for x in ${KPATCH_DIR}; do rm -f ${x}/${i}* 2>/dev/null; done |
| 713 |
eend $? |
| 714 |
done |
| 715 |
|
| 716 |
# and now, finally, we patch it :) |
| 717 |
for x in ${KPATCH_DIR}; do |
| 718 |
for i in $(find ${x} -maxdepth 1 -iname "*.patch*" -or -iname "*.diff*" | sort -n); do |
| 719 |
STDERR_T="${T}/${i/*\//}" |
| 720 |
STDERR_T="${STDERR_T/.patch*/.err}" |
| 721 |
|
| 722 |
[ -z ${i/*.patch*/} ] && PATCH_DEPTH=${i/*.patch/} |
| 723 |
#[ -z ${i/*.diff*/} ] && PATCH_DEPTH=${i/*.diff/} |
| 724 |
|
| 725 |
if [ -z "${PATCH_DEPTH}" ]; then PATCH_DEPTH=0; fi |
| 726 |
|
| 727 |
ebegin "Applying ${i/*\//} (-p${PATCH_DEPTH}+)" |
| 728 |
while [ ${PATCH_DEPTH} -lt 5 ]; do |
| 729 |
echo "Attempting Dry-run:" >> ${STDERR_T} |
| 730 |
echo "cmd: patch -p${PATCH_DEPTH} --dry-run -f < ${i}" >> ${STDERR_T} |
| 731 |
echo "=======================================================" >> ${STDERR_T} |
| 732 |
if [ $(patch -p${PATCH_DEPTH} --dry-run -f < ${i} >> ${STDERR_T}) $? -eq 0 ]; then |
| 733 |
echo "Attempting patch:" > ${STDERR_T} |
| 734 |
echo "cmd: patch -p${PATCH_DEPTH} -f < ${i}" >> ${STDERR_T} |
| 735 |
echo "=======================================================" >> ${STDERR_T} |
| 736 |
if [ $(patch -p${PATCH_DEPTH} -f < ${i} >> ${STDERR_T}) "$?" -eq 0 ]; then |
| 737 |
eend 0 |
| 738 |
rm ${STDERR_T} |
| 739 |
break |
| 740 |
else |
| 741 |
eend 1 |
| 742 |
eerror "Failed to apply patch ${i/*\//}" |
| 743 |
eerror "Please attach ${STDERR_T} to any bug you may post." |
| 744 |
die "Failed to apply ${i/*\//}" |
| 745 |
fi |
| 746 |
else |
| 747 |
PATCH_DEPTH=$((${PATCH_DEPTH} + 1)) |
| 748 |
fi |
| 749 |
done |
| 750 |
if [ ${PATCH_DEPTH} -eq 5 ]; then |
| 751 |
eend 1 |
| 752 |
eerror "Please attach ${STDERR_T} to any bug you may post." |
| 753 |
die "Unable to dry-run patch." |
| 754 |
fi |
| 755 |
done |
| 756 |
done |
| 757 |
|
| 758 |
# clean up KPATCH_DIR's - fixes bug #53610 |
| 759 |
for x in ${KPATCH_DIR}; do rm -Rf ${x}; done |
| 760 |
|
| 761 |
LC_ALL="${myLC_ALL}" |
| 762 |
LANG="${myLANG}" |
| 763 |
} |
| 764 |
|
| 765 |
# getfilevar accepts 2 vars as follows: |
| 766 |
# getfilevar <VARIABLE> <CONFIGFILE> |
| 767 |
# pulled from linux-info |
| 768 |
|
| 769 |
getfilevar() { |
| 770 |
local workingdir basefname basedname xarch=$(tc-arch-kernel) |
| 771 |
|
| 772 |
if [[ -z ${1} ]] && [[ ! -f ${2} ]]; then |
| 773 |
echo -e "\n" |
| 774 |
eerror "getfilevar requires 2 variables, with the second a valid file." |
| 775 |
eerror " getfilevar <VARIABLE> <CONFIGFILE>" |
| 776 |
else |
| 777 |
workingdir=${PWD} |
| 778 |
basefname=$(basename ${2}) |
| 779 |
basedname=$(dirname ${2}) |
| 780 |
unset ARCH |
| 781 |
|
| 782 |
cd ${basedname} |
| 783 |
echo -e "include ${basefname}\ne:\n\t@echo \$(${1})" | \ |
| 784 |
make ${BUILD_FIXES} -s -f - e 2>/dev/null |
| 785 |
cd ${workingdir} |
| 786 |
|
| 787 |
ARCH=${xarch} |
| 788 |
fi |
| 789 |
} |
| 790 |
|
| 791 |
detect_arch() { |
| 792 |
# This function sets ARCH_URI and ARCH_PATCH |
| 793 |
# with the neccessary info for the arch sepecific compatibility |
| 794 |
# patchsets. |
| 795 |
|
| 796 |
local ALL_ARCH LOOP_ARCH COMPAT_URI i |
| 797 |
|
| 798 |
# COMPAT_URI is the contents of ${ARCH}_URI |
| 799 |
# ARCH_URI is the URI for all the ${ARCH}_URI patches |
| 800 |
# ARCH_PATCH is ARCH_URI broken into files for UNIPATCH |
| 801 |
|
| 802 |
ARCH_URI="" |
| 803 |
ARCH_PATCH="" |
| 804 |
ALL_ARCH="X86 PPC PPC64 SPARC MIPS ALPHA ARM HPPA AMD64 IA64 X86OBSD S390 SH" |
| 805 |
|
| 806 |
for LOOP_ARCH in ${ALL_ARCH}; do |
| 807 |
COMPAT_URI="${LOOP_ARCH}_URI" |
| 808 |
COMPAT_URI="${!COMPAT_URI}" |
| 809 |
|
| 810 |
[[ -n ${COMPAT_URI} ]] && \ |
| 811 |
ARCH_URI="${ARCH_URI} $(echo ${LOOP_ARCH} | tr '[:upper:]' '[:lower:]')? ( ${COMPAT_URI} )" |
| 812 |
|
| 813 |
if [[ ${LOOP_ARCH} == "$(echo $(tc-arch-kernel) | tr '[:lower:]' '[:upper:]')" ]]; then |
| 814 |
for i in ${COMPAT_URI}; do |
| 815 |
ARCH_PATCH="${ARCH_PATCH} ${DISTDIR}/${i/*\//}" |
| 816 |
done |
| 817 |
fi |
| 818 |
done |
| 819 |
} |
| 820 |
|
| 821 |
# sparc nastiness |
| 822 |
#============================================================== |
| 823 |
# This script generates the files in /usr/include/asm for sparc systems |
| 824 |
# during installation of sys-kernel/linux-headers. |
| 825 |
# Will no longer be needed when full 64 bit support is used on sparc64 |
| 826 |
# systems. |
| 827 |
# |
| 828 |
# Shamefully ripped from Debian |
| 829 |
# ---------------------------------------------------------------------- |
| 830 |
|
| 831 |
# Idea borrowed from RedHat's kernel package |
| 832 |
|
| 833 |
# This is gonna get replaced by something in multilib.eclass soon... |
| 834 |
# --eradicator |
| 835 |
generate_sparc_asm() { |
| 836 |
local name |
| 837 |
|
| 838 |
cd $1 || die |
| 839 |
mkdir asm |
| 840 |
|
| 841 |
for h in `( ls asm-sparc; ls asm-sparc64 ) | grep '\.h$' | sort -u`; do |
| 842 |
name="$(echo $h | tr a-z. A-Z_)" |
| 843 |
# common header |
| 844 |
echo "/* All asm/ files are generated and point to the corresponding |
| 845 |
* file in asm-sparc or asm-sparc64. |
| 846 |
*/ |
| 847 |
|
| 848 |
#ifndef __SPARCSTUB__${name}__ |
| 849 |
#define __SPARCSTUB__${name}__ |
| 850 |
" > asm/${h} |
| 851 |
|
| 852 |
# common for sparc and sparc64 |
| 853 |
if [ -f asm-sparc/$h -a -f asm-sparc64/$h ]; then |
| 854 |
echo "#ifdef __arch64__ |
| 855 |
#include <asm-sparc64/$h> |
| 856 |
#else |
| 857 |
#include <asm-sparc/$h> |
| 858 |
#endif |
| 859 |
" >> asm/${h} |
| 860 |
|
| 861 |
# sparc only |
| 862 |
elif [ -f asm-sparc/$h ]; then |
| 863 |
echo "#ifndef __arch64__ |
| 864 |
#include <asm-sparc/$h> |
| 865 |
#endif |
| 866 |
" >> asm/${h} |
| 867 |
|
| 868 |
# sparc64 only |
| 869 |
else |
| 870 |
echo "#ifdef __arch64__ |
| 871 |
#include <asm-sparc64/$h> |
| 872 |
#endif |
| 873 |
" >> asm/${h} |
| 874 |
fi |
| 875 |
|
| 876 |
# common footer |
| 877 |
echo "#endif /* !__SPARCSTUB__${name}__ */" >> asm/${h} |
| 878 |
done |
| 879 |
return 0 |
| 880 |
} |
| 881 |
|
| 882 |
headers___fix() { |
| 883 |
# Voodoo to partially fix broken upstream headers. |
| 884 |
# Issues with this function should go to plasmaroo. |
| 885 |
sed -i \ |
| 886 |
-e "s/\([ "$'\t'"]\)\(u\|s\)\(8\|16\|32\|64\)\([ "$'\t'"]\)/\1__\2\3\4/g;" \ |
| 887 |
-e 's/ \(u\|s\)\(8\|16\|32\|64\)$/ __\1\2/g' \ |
| 888 |
-e 's/\([(, ]\)\(u\|s\)64\([, )]\)/\1__\264\3/g' \ |
| 889 |
-e "s/^\(u\|s\)\(8\|16\|32\|64\)\([ "$'\t'"]\)/__\1\2\3/g;" \ |
| 890 |
"$@" |
| 891 |
} |
| 892 |
|
| 893 |
# common functions |
| 894 |
#============================================================== |
| 895 |
kernel-2_src_unpack() { |
| 896 |
universal_unpack |
| 897 |
|
| 898 |
[[ -n ${UNIPATCH_LIST} || -n ${UNIPATCH_LIST_DEFAULT} || -n ${UNIPATCH_LIST_GENPATCHES} ]] && \ |
| 899 |
unipatch "${UNIPATCH_LIST_DEFAULT} ${UNIPATCH_LIST_GENPATCHES} ${UNIPATCH_LIST}" |
| 900 |
|
| 901 |
[[ -z ${K_NOSETEXTRAVERSION} ]] && unpack_set_extraversion |
| 902 |
unpack_fix_docbook |
| 903 |
unpack_fix_install_path |
| 904 |
|
| 905 |
kernel_is 2 4 && unpack_2_4 |
| 906 |
} |
| 907 |
|
| 908 |
kernel-2_src_compile() { |
| 909 |
cd ${S} |
| 910 |
[[ ${ETYPE} == headers ]] && compile_headers |
| 911 |
[[ ${ETYPE} == sources ]] && \ |
| 912 |
use doc && ! use arm && ! use s390 && compile_manpages |
| 913 |
} |
| 914 |
|
| 915 |
kernel-2_pkg_preinst() { |
| 916 |
[[ ${ETYPE} == headers ]] && preinst_headers |
| 917 |
} |
| 918 |
|
| 919 |
kernel-2_src_install() { |
| 920 |
install_universal |
| 921 |
[[ ${ETYPE} == headers ]] && install_headers |
| 922 |
[[ ${ETYPE} == sources ]] && install_sources |
| 923 |
} |
| 924 |
|
| 925 |
kernel-2_pkg_postinst() { |
| 926 |
[[ ${ETYPE} == headers ]] && postinst_headers |
| 927 |
[[ ${ETYPE} == sources ]] && postinst_sources |
| 928 |
} |
| 929 |
|
| 930 |
kernel-2_pkg_setup() { |
| 931 |
[[ ${ETYPE} == headers ]] && setup_headers |
| 932 |
[[ ${ETYPE} == sources ]] && echo ">>> Preparing to unpack ..." |
| 933 |
} |
| 934 |
|
| 935 |
kernel-2_pkg_prerm() { |
| 936 |
local KV_DIR=${ROOT}/usr/src/linux-${KV_FULL} |
| 937 |
|
| 938 |
if [[ ${ETYPE} == sources ]]; then |
| 939 |
# if we have a config for it then we should act on it. |
| 940 |
if [[ -f ${KV_DIR}/.config ]]; then |
| 941 |
gzip -c ${KV_DIR}/.config > ${KV_DIR}.config.gz |
| 942 |
fi |
| 943 |
|
| 944 |
# have kbuild clean up for us. |
| 945 |
if [[ -f ${KV_DIR}/include/linux/version.h ]]; then |
| 946 |
ARCH=$(tc-arch-kernel) |
| 947 |
make -C ${KV_DIR} mrproper |
| 948 |
fi |
| 949 |
fi |
| 950 |
} |