Check-in [e138f0dde7]
Overview
Comment:Added Linux headers package
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1: e138f0dde7ed11752216e46ac88918d3c73468f7
User & Date: rkeene on 2014-11-06 18:20:20
Other Links: branch diff | manifest | tags
Context
2014-11-06
18:21
Upgraded linux-headers check-in: aa58b7fc45 user: rkeene tags: packages
18:20
Added Linux headers package check-in: e138f0dde7 user: rkeene tags: packages
2014-11-05
20:44
Moved extract and download to functions check-in: d6d2c4eb25 user: rkeene tags: packages
Changes

Added pkgs/linux-headers version [21a46be42d].







































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /usr/bin/env bash

version='2.6.32.63'
url="https://www.kernel.org/pub/linux/kernel/v2.6/longterm/v2.6.32/linux-${version}.tar.xz"
domain=core.appfs.rkeene.org
sha256='2a3fa8fff01021341a1b7932e0a4c28ba39674833d679ab4e07c17b2b8c042af'


function configure() {
	:
}

function build() {
	make defconfig || die
}

function install() {
	make INSTALL_HDR_PATH="${destdir}/${prefix}/include" headers_install || die
}