kernel-xen-dom0: remove, 2.6.37 contains xen dom0 support out-of-the-box.

This commit is contained in:
Juan RP 2011-01-09 16:38:13 +01:00
parent 47d7db3cc3
commit c639ce302f
8 changed files with 0 additions and 4368 deletions

View file

@ -1,12 +0,0 @@
#
# 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

View file

@ -1,8 +0,0 @@
#
# 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

View file

@ -1,12 +0,0 @@
# Template file for 'kernel-headers-xen-dom0'.
#
short_desc="${pkgname} src headers (Xen dom0)"
long_desc="
This package contains the required source headers to be able to build
external 3rd party binary modules."
do_install()
{
mkdir -p ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/src ${DESTDIR}/usr
}

View file

@ -1,36 +0,0 @@
Patch submitted to lm-sensors@lm-sensors.org, here:
http://lists.lm-sensors.org/pipermail/lm-sensors/2010-January/027606.html
--- drivers/hwmon/asus_atk0110.c.orig 2010-01-07 00:07:45.000000000 +0100
+++ drivers/hwmon/asus_atk0110.c 2010-01-12 19:38:48.066204943 +0100
@@ -1141,12 +1141,7 @@ static int atk_add(struct acpi_device *d
buf.length = ACPI_ALLOCATE_BUFFER;
ret = acpi_evaluate_object_typed(data->atk_handle, BOARD_ID, NULL,
&buf, ACPI_TYPE_PACKAGE);
- if (ret != AE_OK) {
- dev_dbg(&device->dev, "atk: method MBIF not found\n");
- err = -ENODEV;
- goto out;
- }
-
+ if (ret == AE_OK) {
obj = buf.pointer;
if (obj->package.count >= 2 &&
obj->package.elements[1].type == ACPI_TYPE_STRING) {
@@ -1154,6 +1149,15 @@ static int atk_add(struct acpi_device *d
obj->package.elements[1].string.pointer);
}
ACPI_FREE(buf.pointer);
+ } else {
+ /*
+ * Some DSDTs do not have the MBIF method, but this should
+ * not be treated as fatal error! just mention this fact
+ * and continue.
+ */
+ dev_dbg(&device->dev,
+ "atk: method MBIF not found, continuing...\n");
+ }
/* Check for hwmon methods: first check "old" style methods; note that
* both may be present: in this case we stick to the old interface;

View file

@ -1,26 +0,0 @@
# Build template for 'kernel-xen'.
. ${XBPS_SRCPKGDIR}/kernel/template
# Override required vars.
pkgname=kernel-xen-dom0
_kernel_xen_dom0=yes
_kernel_ver=2.6.32
# This matches upstream version from linux-2.6-xen xen-stable branch.
_kernel_patch_ver=9
_kernel_orig_patch_ver=9
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=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()
{
rm -rf ${DESTDIR}/lib/firmware
}