mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
kernel26-dockstar now includes modules
This commit is contained in:
parent
0a1c2ce6e5
commit
b177e67d45
1 changed files with 8 additions and 5 deletions
|
@ -45,13 +45,16 @@ build() {
|
||||||
make oldconfig
|
make oldconfig
|
||||||
|
|
||||||
# Make!
|
# Make!
|
||||||
make clean uImage
|
make clean modules uImage
|
||||||
|
|
||||||
# Pack up the created uImage
|
# Pack up the created uImage
|
||||||
mkdir -p $pkgdir/boot
|
mkdir -p $pkgdir/boot
|
||||||
cp $srcdir/linux/arch/arm/boot/uImage $pkgdir/boot/uImage
|
cp $srcdir/linux/arch/arm/boot/uImage $pkgdir/boot/uImage-dockstar
|
||||||
|
|
||||||
# Also, maybe installation should include modules,
|
# Make and package kernel modules
|
||||||
# and asking users to move it manually to /boot/uImage,
|
mkdir -p $pkgdir/{lib/modules,boot}
|
||||||
# just to be sure?
|
make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
|
||||||
|
|
||||||
|
echo "To make things safer, you will manually have to move/copy"
|
||||||
|
echo "/boot/uImage-dockstar to /boot/uImage."
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue