kernel26-dockstar now includes modules

This commit is contained in:
Mike Staszel 2010-07-20 08:32:05 -07:00
parent 0a1c2ce6e5
commit b177e67d45

View file

@ -45,13 +45,16 @@ build() {
make oldconfig
# Make!
make clean uImage
make clean modules uImage
# Pack up the created uImage
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,
# and asking users to move it manually to /boot/uImage,
# just to be sure?
# Make and package kernel modules
mkdir -p $pkgdir/{lib/modules,boot}
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."
}