diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-06-22 17:33:58 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-06-22 17:33:58 -0300 |
commit | bc42c16bdd4b5448c3f311637da8ad1f3c2b96cd (patch) | |
tree | c53fb7e21020824ef8c8af3137dba2aaa7dcbfa4 /libre/kernel26-libre | |
parent | 41d8cd60318793b57e9db474f34506d7639380f4 (diff) | |
download | abslibre-bc42c16bdd4b5448c3f311637da8ad1f3c2b96cd.tar.gz abslibre-bc42c16bdd4b5448c3f311637da8ad1f3c2b96cd.tar.bz2 abslibre-bc42c16bdd4b5448c3f311637da8ad1f3c2b96cd.zip |
libquicktime-libre-1.2.2-3
Diffstat (limited to 'libre/kernel26-libre')
-rwxr-xr-x | libre/kernel26-libre/get_configs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libre/kernel26-libre/get_configs b/libre/kernel26-libre/get_configs deleted file mode 100755 index 624ea1048..000000000 --- a/libre/kernel26-libre/get_configs +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -source PKGBUILD - -pkgname=${pkgname/-libre/} -KERNEL_VERSION=${2:-${_basekernel}-ARCH} -from=${1:-core} - -for pkgarch in ${arch[@]}; do - wget -nc "http://mirrors.kernel.org/archlinux/$from/os/${pkgarch}/${pkgname}-headers-${pkgver}-${pkgrel}-${pkgarch}.pkg.tar.xz" - tar -xOf "${pkgname}-headers-${pkgver}-${pkgrel}-${pkgarch}.pkg.tar.xz" usr/src/linux-${KERNEL_VERSION}/.config > config.${pkgarch} -done - -sed -i "s/-ARCH/-LIBRE/" config.* - -exit 0 - |