kernel-xen-dom0: update to latest xen/stable source, 2.6.32.9 kernel.
--HG-- extra : convert_revision : 7b3bacc26fc3b5b108075348d89cba844492428d
This commit is contained in:
parent
9d6197a1e4
commit
d081182741
8 changed files with 389 additions and 527 deletions
12
srcpkgs/kernel-xen-dom0/INSTALL
Normal file
12
srcpkgs/kernel-xen-dom0/INSTALL
Normal file
|
@ -0,0 +1,12 @@
|
|||
#
|
||||
# This script builds the required initramfs.
|
||||
#
|
||||
case "${ACTION}" in
|
||||
post)
|
||||
if [ ! -f var/lib/initramfs-tools/${VERSION}-xen-dom0 ]; then
|
||||
update-initramfs -B -c -k ${VERSION}-xen-dom0
|
||||
else
|
||||
update-initramfs -B -u -k ${VERSION}-xen-dom0
|
||||
fi
|
||||
;;
|
||||
esac
|
8
srcpkgs/kernel-xen-dom0/REMOVE
Normal file
8
srcpkgs/kernel-xen-dom0/REMOVE
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# This script removes the initramfs.
|
||||
#
|
||||
case "${ACTION}" in
|
||||
post)
|
||||
update-initramfs -d -k ${VERSION}-xen-dom0
|
||||
;;
|
||||
esac
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1 @@
|
|||
../../kernel/patches/asus_atk0110_missing_MBIF_method_not_fatal.diff
|
Binary file not shown.
BIN
srcpkgs/kernel-xen-dom0/patches/xen_paravirtops_dom0.patch.bz2
Normal file
BIN
srcpkgs/kernel-xen-dom0/patches/xen_paravirtops_dom0.patch.bz2
Normal file
Binary file not shown.
|
@ -5,19 +5,20 @@
|
|||
pkgname=kernel-xen-dom0
|
||||
_kernel_xen_dom0=yes
|
||||
_kernel_ver=2.6.31
|
||||
# This matches upstream version from linux-2.6-xen xen-master branch.
|
||||
# This matches upstream version from linux-2.6-xen xen-stable branch.
|
||||
_kernel_patch_ver=6
|
||||
_kernel_orig_patch_ver=12
|
||||
version=${_kernel_ver}.${_kernel_patch_ver}
|
||||
wrksrc="linux-${_kernel_ver}.${_kernel_orig_patch_ver}"
|
||||
distfiles="${KERNEL_SITE}/kernel/v2.6/linux-${_kernel_ver}.${_kernel_orig_patch_ver}.tar.bz2"
|
||||
checksum=e4fa8994ca4edb4a9d435e338dfe1ee1e50e606ffa97ea3881d1ba636cf658ce
|
||||
checksum=f4f89aa0bed6886f90cfcb5a1933be0cb46e736d93d905ef582ed659e4d1d0bc
|
||||
short_desc="The Linux kernel and associated stuff (2.6 branch + Xen dom0)"
|
||||
long_desc="
|
||||
This package provides the linux kernel image and associated modules
|
||||
supporting Xen in domain 0."
|
||||
|
||||
subpackages="kernel-headers-xen-dom0"
|
||||
unset triggers
|
||||
|
||||
post_install()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue