diff --git a/packages/debug/meta b/packages/debug/meta index 8ce0ec5f33..53171d6549 100644 --- a/packages/debug/meta +++ b/packages/debug/meta @@ -25,7 +25,7 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.openelec.tv" PKG_URL="" -PKG_DEPENDS="acpica cpuid dmidecode dstat gdb hddtemp i2c-tools pmtools powertop smem strace wireless_tools" +PKG_DEPENDS="acpica cpuid dmidecode dstat gdb hddtemp i2c-tools powertop smem strace wireless_tools" PKG_BUILD_DEPENDS="toolchain" PKG_PRIORITY="optional" PKG_SECTION="debug" diff --git a/packages/debug/pmtools/build b/packages/debug/pmtools/build deleted file mode 100755 index 779f013d2f..0000000000 --- a/packages/debug/pmtools/build +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2013 Dag Wieers (dag@wieers.com) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cd $PKG_BUILD -make CC="$TARGET_CC" \ - CFLAGS="$TARGET_CFLAGS -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Os -s -D_LINUX -DDEFINE_ALTERNATE_TYPES -I../include" \ - -C acpidump acpidump - -make CC="$TARGET_CC" \ - CFLAGS="$TARGET_CFLAGS -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Os -s -D_LINUX -DDEFINE_ALTERNATE_TYPES -I../include" \ - -C acpixtract acpixtract - -make CC="$TARGET_CC" \ - CFLAGS="$TARGET_CFLAGS -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Os -s -D_LINUX -DDEFINE_ALTERNATE_TYPES -I../include" \ - -C madt madt - diff --git a/packages/debug/pmtools/install b/packages/debug/pmtools/install deleted file mode 100755 index 382020d6e3..0000000000 --- a/packages/debug/pmtools/install +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2013 Dag Wieers (dag@wieers.com) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/bin/ - cp $PKG_BUILD/acpidump/acpidump $INSTALL/usr/bin/ - cp $PKG_BUILD/acpixtract/acpixtract $INSTALL/usr/bin/ - cp $PKG_BUILD/madt/madt $INSTALL/usr/bin/ diff --git a/packages/debug/pmtools/meta b/packages/debug/pmtools/meta deleted file mode 100644 index 7b3c771c90..0000000000 --- a/packages/debug/pmtools/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2013 Dag Wieers (dag@wieers.com) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="pmtools" -PKG_VERSION="20110323" -PKG_REV="1" -PKG_ARCH="i386 x86_64" -PKG_LICENSE="GPL" -PKG_SITE="https://lesswatts.org/projects/acpi/utilities.php" -PKG_URL="http://mirror.linux.org.au/linux/kernel/people/lenb/acpi/utils/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS="" -PKG_BUILD_DEPENDS="toolchain" -PKG_PRIORITY="optional" -PKG_SECTION="system" -PKG_SHORTDESC="pmtools: ACPI debugging utilities" -PKG_LONGDESC="The pmtools package contains tools to debug ACPI DSDT tables" -PKG_IS_ADDON="no" - -PKG_AUTORECONF="no" diff --git a/packages/debug/pmtools/patches/pmtools-madt.patch b/packages/debug/pmtools/patches/pmtools-madt.patch deleted file mode 100644 index 4dd3dfadc8..0000000000 --- a/packages/debug/pmtools/patches/pmtools-madt.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Naur pmtools/madt/Makefile pmtools.patch/madt/Makefile ---- pmtools/madt/Makefile 2005-11-11 18:07:04.000000000 +0100 -+++ pmtools.patch/madt/Makefile 2007-11-16 19:48:56.000000000 +0100 -@@ -1,6 +1,16 @@ -+PROG= madt -+SRCS= madt.c -+ -+all: madt -+$(PROG) : $(SRCS) -+ $(CC) $(CFLAGS) $(SRCS) -o $(PROG) -+ - test: madt -- ./madt < APIC --madt: madt.c acpi.h tables.c -- cc -o madt madt.c --clean: -- rm madt -+ ./madt < example.APIC.dat -+ ./madt < example.APIC.bad.dat -+ -+CLEANFILES= $(PROG) -+ -+clean : -+ rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS)) *~ -+ diff --git a/packages/debug/pmtools/unpack b/packages/debug/pmtools/unpack deleted file mode 100755 index c9f8adddd7..0000000000 --- a/packages/debug/pmtools/unpack +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2013 Dag Wieers (dag@wieers.com) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mv $BUILD/$PKG_NAME $BUILD/$PKG_NAME-$PKG_VERSION