mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
63 lines
1.9 KiB
Bash
63 lines
1.9 KiB
Bash
|
# Maintainer: Mike Staszel <mikestaszel@gmail.com>
|
||
|
|
||
|
# This PKGBUILD makes a kernel for the iConnect with official patches
|
||
|
# Lots of patches are broken, only the linux-2.6.28-firmware_proc one works
|
||
|
|
||
|
pkgname=kernel26-iconnect
|
||
|
pkgver=2.6.36
|
||
|
pkgrel=1
|
||
|
pkgdesc="The Linux Kernel and modules for iConnect"
|
||
|
arch=('arm')
|
||
|
license=('GPL2')
|
||
|
url="http://www.kernel.org"
|
||
|
depends=('coreutils' 'module-init-tools')
|
||
|
makedepends=('uboot-mkimage')
|
||
|
conflicts=('kernel26')
|
||
|
provides=('kernel26')
|
||
|
install=kernel26-iconnect.install
|
||
|
source=(http://www.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
|
||
|
iconnect-2.6.30.9.config
|
||
|
linux-2.6.28-firmware_proc.patch
|
||
|
mapower_iconnect_2.6.30.9.patch
|
||
|
mapower_led_level_2.6.30.9_20100106.patch
|
||
|
mkimage.patch)
|
||
|
md5sums=('61f3739a73afb6914cb007f37fb09b62'
|
||
|
'393dbadbc1db7741a0c0e46a25f76fb5'
|
||
|
'2fac0d359a66217480126d8dca803d3c'
|
||
|
'afd88d7c0295387a67d7ae92020b1303'
|
||
|
'e42987b1730a6ed9628b46ec0706ed25'
|
||
|
'6647c1ebcadf1aad37c6c6d0398e7988')
|
||
|
LDFLAGS=""
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/
|
||
|
cp *.patch iconnect-2.6.30.9.config linux-$pkgver/
|
||
|
cd linux-$pkgver
|
||
|
|
||
|
# Apply Aholler's DockStar hardware patches
|
||
|
patch -p1 -i linux-2.6.28-firmware_proc.patch
|
||
|
patch -p1 -i mapower_iconnect_2.6.30.9.patch
|
||
|
patch -p1 -i mapower_led_level_2.6.30.9_20100106.patch
|
||
|
patch -p1 -i mkimage.patch
|
||
|
|
||
|
# Prepare for make
|
||
|
mv iconnect-2.6.30.9.config .config
|
||
|
echo "Press ENTER 4972 times..."
|
||
|
make oldconfig
|
||
|
make menuconfig
|
||
|
|
||
|
# Make!
|
||
|
make modules uImage || return 1
|
||
|
|
||
|
# Pack up the created uImage
|
||
|
mkdir -p $pkgdir/boot
|
||
|
cp $srcdir/linux-$pkgver/arch/arm/boot/uImage $pkgdir/boot/
|
||
|
|
||
|
# Make and package kernel modules
|
||
|
mkdir -p $pkgdir/{lib/modules,boot}
|
||
|
make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
|
||
|
|
||
|
# Remove the symlink to the build machine's build directory
|
||
|
rm $pkgdir/lib/modules/$pkgver-dockstar/build
|
||
|
}
|