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 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."
} }