Check-in [aa58b7fc45]
Overview
Comment:Upgraded linux-headers
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1: aa58b7fc45ff5aa16611669b32aa9070f42a5c1e
User & Date: rkeene on 2014-11-06 18:21:46
Other Links: branch diff | manifest | tags
Context
2014-11-06
18:23
Updated to include OS and arch in package CPIO archive filename check-in: 86cac376ec user: rkeene tags: packages
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
Changes

Modified pkgs/linux-headers from [21a46be42d] to [e14114f6de].

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
}


|
|

<
|












1
2
3
4
5

6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env bash

version='3.17.2'
url="https://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz"
domain=core.appfs.rkeene.org

sha256='f9221dc0878955318ab57b8bb5ea1f26cbbaa39359c91d0f6c8de74d68aea796'

function configure() {
	:
}

function build() {
	make defconfig || die
}

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