diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-03-16 17:09:35 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-03-16 17:09:35 -0300 |
commit | 67a9d2941b1db27789d481b9e3b6a043a022a5f1 (patch) | |
tree | b0b83d0535592c0153d6a9166e78ca9d2e7d7617 /libre/kernel26-libre/get_configs | |
parent | 5af9b6bf49c2179e9d73592f18b0eeb6478a3ec7 (diff) |
kernel26-libre-2.6.38-1
Diffstat (limited to 'libre/kernel26-libre/get_configs')
-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 - |