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: | 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 1 #! /usr/bin/env bash 2 2 3 -version='2.6.32.63' 4 -url="https://www.kernel.org/pub/linux/kernel/v2.6/longterm/v2.6.32/linux-${version}.tar.xz" 3 +version='3.17.2' 4 +url="https://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz" 5 5 domain=core.appfs.rkeene.org 6 -sha256='2a3fa8fff01021341a1b7932e0a4c28ba39674833d679ab4e07c17b2b8c042af' 7 - 6 +sha256='f9221dc0878955318ab57b8bb5ea1f26cbbaa39359c91d0f6c8de74d68aea796' 8 7 9 8 function configure() { 10 9 : 11 10 } 12 11 13 12 function build() { 14 13 make defconfig || die 15 14 } 16 15 17 16 function install() { 18 17 make INSTALL_HDR_PATH="${destdir}/${prefix}/include" headers_install || die 19 18 }