From db2a2f927465d5349175aa4a3bddfa12be400126 Mon Sep 17 00:00:00 2001 From: mrdominuzq Date: Mon, 3 Oct 2011 16:03:31 +0300 Subject: [PATCH 01/11] Alsa-plugins: updated to 1.0.24 --- packages/audio/alsa-plugins/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/audio/alsa-plugins/meta b/packages/audio/alsa-plugins/meta index c40512074f..5a7add224c 100644 --- a/packages/audio/alsa-plugins/meta +++ b/packages/audio/alsa-plugins/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="alsa-plugins" -PKG_VERSION="1.0.23" +PKG_VERSION="1.0.24" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" From 0c92f00a8db124258a40538e37687ceff338ac31 Mon Sep 17 00:00:00 2001 From: mrdominuzq Date: Tue, 4 Oct 2011 12:55:51 +0300 Subject: [PATCH 02/11] Edited packages/sysutils/upower/meta via GitHub --- packages/sysutils/upower/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/upower/meta b/packages/sysutils/upower/meta index 76f55343a7..0ee19e7b86 100644 --- a/packages/sysutils/upower/meta +++ b/packages/sysutils/upower/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="upower" -PKG_VERSION="0.9.12" +PKG_VERSION="0.9.14" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" From df4d1d259611937963307f2a0c3f067286516bf3 Mon Sep 17 00:00:00 2001 From: mrdominuzq Date: Tue, 4 Oct 2011 12:56:22 +0300 Subject: [PATCH 03/11] added intltoolize --force for success build --- packages/sysutils/upower/build | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/sysutils/upower/build b/packages/sysutils/upower/build index 99c7db3d8e..7d3507c2fe 100755 --- a/packages/sysutils/upower/build +++ b/packages/sysutils/upower/build @@ -23,6 +23,7 @@ . config/options $1 cd $PKG_BUILD +intltoolize --force ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ --prefix=/usr \ From 35052f91b9bee53671813846efc476d85a301d28 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 5 Oct 2011 11:16:24 +0200 Subject: [PATCH 04/11] xbmc: another try for 'cputemp' Signed-off-by: Stephan Raue --- packages/mediacenter/xbmc/scripts/cputemp | 34 +++++++++++++++++++---- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/packages/mediacenter/xbmc/scripts/cputemp b/packages/mediacenter/xbmc/scripts/cputemp index b61b416323..3c35564ed1 100755 --- a/packages/mediacenter/xbmc/scripts/cputemp +++ b/packages/mediacenter/xbmc/scripts/cputemp @@ -1,8 +1,8 @@ #!/bin/sh ################################################################################ -# Copyright (C) 2009-2010 OpenELEC.tv -# http://www.openelec.tv +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) # # 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 @@ -20,10 +20,32 @@ # http://www.gnu.org/copyleft/gpl.html ################################################################################ -TEMP="0" +# inspired by +# https://github.com/xtranophilist/gnome-shell-extension-cpu-temperature/blob/master/extension.js -if [ -f /usr/bin/sensors ]; then - TEMP=`/usr/bin/sensors -u | grep -A 1 "Core " | tail -n 1 | awk '{printf("%d\n",$2 + 0.5);}'` +TEMP=0 + +if [ -f /sys/devices/platform/coretemp.0/temp1_input ]; then + # used with coretemp + TEMP=`cat /sys/devices/platform/coretemp.0/temp1_input` +elif [ -f /sys/devices/platform/coretemp.0/temp2_input ]; then + # used with coretemp + TEMP=`cat /sys/devices/platform/coretemp.0/temp2_input` +elif [ -f /sys/bus/acpi/devices/LNXTHERM\:00/thermal_zone/temp ]; then + # used on some intel systems + TEMP=`cat /sys/bus/acpi/devices/LNXTHERM\:00/thermal_zone/temp` +elif [ -f /sys/devices/virtual/thermal/thermal_zone0/temp ]; then + # used on some intel systems + TEMP=`cat /sys/devices/virtual/thermal/thermal_zone0/temp` +elif [ -f /sys/class/hwmon/hwmon0/temp1_input ]; then + # hwmon for new 2.6.39, 3.0 linux kernels + TEMP=`cat /sys/class/hwmon/hwmon0/temp1_input` +elif [ -f /sys/class/hwmon/hwmon0/device/temp1_input ]; then + # used on AMD systems + TEMP=`cat /sys/class/hwmon/hwmon0/device/temp1_input` +elif [ -f /sys/class/hwmon/hwmon0/device/temp2_input ]; then + # used on ION systems + TEMP=`cat /sys/class/hwmon/hwmon0/device/temp2_input` fi -echo "${TEMP} C" +echo "$(( $TEMP / 1000 )) C" From e372a98672706a00e48e0d337cbebf980eb46c3c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 5 Oct 2011 23:15:34 +0200 Subject: [PATCH 05/11] linux: update to linux-3.1-rc9 Signed-off-by: Stephan Raue --- packages/linux/meta | 2 +- ..._crosscompile.patch => linux-3.1-rc9-000_crosscompile.patch} | 0 ...dev_console.patch => linux-3.1-rc9-003-no_dev_console.patch} | 0 ...tch => linux-3.1-rc9-004_lower_undefined_mode_timeout.patch} | 0 ...06_enable_utf8.patch => linux-3.1-rc9-006_enable_utf8.patch} | 0 ..._floppy_die.patch => linux-3.1-rc9-007_die_floppy_die.patch} | 0 ...=> linux-3.1-rc9-009_disable_i8042_check_on_apple_mac.patch} | 0 ...ver.patch => linux-3.1-rc9-050_add_appleir_usb_driver.patch} | 0 ....1.patch => linux-3.1-rc9-052-aureal_remote_quirk-0.1.patch} | 0 ..._remote-0.1.patch => linux-3.1-rc9-053-ati_remote-0.1.patch} | 0 ...nux-3.1-rc9-053_ati-remote_all_keys_and_keychange-0.1.patch} | 0 ...voton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch} | 0 ... => linux-3.1-rc9-058-add_rtl2832u_dvb-usb_driver-0.1.patch} | 0 ...c9-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch} | 0 ...ch => linux-3.1-rc9-060-fix_dib0700_buffer_access-0.1.patch} | 0 ...> linux-3.1-rc9-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch} | 0 ...atch => linux-3.1-rc9-071-silence_i915_agp-module-0.1.patch} | 0 ...ppiness.patch => linux-3.1-rc9-716_mm-zero_swappiness.patch} | 0 18 files changed, 1 insertion(+), 1 deletion(-) rename packages/linux/patches/{linux-3.1-rc8-000_crosscompile.patch => linux-3.1-rc9-000_crosscompile.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-003-no_dev_console.patch => linux-3.1-rc9-003-no_dev_console.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-004_lower_undefined_mode_timeout.patch => linux-3.1-rc9-004_lower_undefined_mode_timeout.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-006_enable_utf8.patch => linux-3.1-rc9-006_enable_utf8.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-007_die_floppy_die.patch => linux-3.1-rc9-007_die_floppy_die.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-009_disable_i8042_check_on_apple_mac.patch => linux-3.1-rc9-009_disable_i8042_check_on_apple_mac.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-050_add_appleir_usb_driver.patch => linux-3.1-rc9-050_add_appleir_usb_driver.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-052-aureal_remote_quirk-0.1.patch => linux-3.1-rc9-052-aureal_remote_quirk-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-053-ati_remote-0.1.patch => linux-3.1-rc9-053-ati_remote-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-053_ati-remote_all_keys_and_keychange-0.1.patch => linux-3.1-rc9-053_ati-remote_all_keys_and_keychange-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch => linux-3.1-rc9-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-058-add_rtl2832u_dvb-usb_driver-0.1.patch => linux-3.1-rc9-058-add_rtl2832u_dvb-usb_driver-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch => linux-3.1-rc9-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-060-fix_dib0700_buffer_access-0.1.patch => linux-3.1-rc9-060-fix_dib0700_buffer_access-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch => linux-3.1-rc9-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-071-silence_i915_agp-module-0.1.patch => linux-3.1-rc9-071-silence_i915_agp-module-0.1.patch} (100%) rename packages/linux/patches/{linux-3.1-rc8-716_mm-zero_swappiness.patch => linux-3.1-rc9-716_mm-zero_swappiness.patch} (100%) diff --git a/packages/linux/meta b/packages/linux/meta index ece160003d..73dbdaac36 100644 --- a/packages/linux/meta +++ b/packages/linux/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="linux" -PKG_VERSION="3.1-rc8" +PKG_VERSION="3.1-rc9" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/linux/patches/linux-3.1-rc8-000_crosscompile.patch b/packages/linux/patches/linux-3.1-rc9-000_crosscompile.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-000_crosscompile.patch rename to packages/linux/patches/linux-3.1-rc9-000_crosscompile.patch diff --git a/packages/linux/patches/linux-3.1-rc8-003-no_dev_console.patch b/packages/linux/patches/linux-3.1-rc9-003-no_dev_console.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-003-no_dev_console.patch rename to packages/linux/patches/linux-3.1-rc9-003-no_dev_console.patch diff --git a/packages/linux/patches/linux-3.1-rc8-004_lower_undefined_mode_timeout.patch b/packages/linux/patches/linux-3.1-rc9-004_lower_undefined_mode_timeout.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-004_lower_undefined_mode_timeout.patch rename to packages/linux/patches/linux-3.1-rc9-004_lower_undefined_mode_timeout.patch diff --git a/packages/linux/patches/linux-3.1-rc8-006_enable_utf8.patch b/packages/linux/patches/linux-3.1-rc9-006_enable_utf8.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-006_enable_utf8.patch rename to packages/linux/patches/linux-3.1-rc9-006_enable_utf8.patch diff --git a/packages/linux/patches/linux-3.1-rc8-007_die_floppy_die.patch b/packages/linux/patches/linux-3.1-rc9-007_die_floppy_die.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-007_die_floppy_die.patch rename to packages/linux/patches/linux-3.1-rc9-007_die_floppy_die.patch diff --git a/packages/linux/patches/linux-3.1-rc8-009_disable_i8042_check_on_apple_mac.patch b/packages/linux/patches/linux-3.1-rc9-009_disable_i8042_check_on_apple_mac.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-009_disable_i8042_check_on_apple_mac.patch rename to packages/linux/patches/linux-3.1-rc9-009_disable_i8042_check_on_apple_mac.patch diff --git a/packages/linux/patches/linux-3.1-rc8-050_add_appleir_usb_driver.patch b/packages/linux/patches/linux-3.1-rc9-050_add_appleir_usb_driver.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-050_add_appleir_usb_driver.patch rename to packages/linux/patches/linux-3.1-rc9-050_add_appleir_usb_driver.patch diff --git a/packages/linux/patches/linux-3.1-rc8-052-aureal_remote_quirk-0.1.patch b/packages/linux/patches/linux-3.1-rc9-052-aureal_remote_quirk-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-052-aureal_remote_quirk-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-052-aureal_remote_quirk-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-053-ati_remote-0.1.patch b/packages/linux/patches/linux-3.1-rc9-053-ati_remote-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-053-ati_remote-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-053-ati_remote-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-053_ati-remote_all_keys_and_keychange-0.1.patch b/packages/linux/patches/linux-3.1-rc9-053_ati-remote_all_keys_and_keychange-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-053_ati-remote_all_keys_and_keychange-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-053_ati-remote_all_keys_and_keychange-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch b/packages/linux/patches/linux-3.1-rc9-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch rename to packages/linux/patches/linux-3.1-rc9-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch diff --git a/packages/linux/patches/linux-3.1-rc8-058-add_rtl2832u_dvb-usb_driver-0.1.patch b/packages/linux/patches/linux-3.1-rc9-058-add_rtl2832u_dvb-usb_driver-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-058-add_rtl2832u_dvb-usb_driver-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-058-add_rtl2832u_dvb-usb_driver-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch b/packages/linux/patches/linux-3.1-rc9-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-059-rtl2832u_change_value_of_USB_PID_GTEK_WARM-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-060-fix_dib0700_buffer_access-0.1.patch b/packages/linux/patches/linux-3.1-rc9-060-fix_dib0700_buffer_access-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-060-fix_dib0700_buffer_access-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-060-fix_dib0700_buffer_access-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch b/packages/linux/patches/linux-3.1-rc9-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-061-add_ITE-IT9135_dvb-usb_driver-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-071-silence_i915_agp-module-0.1.patch b/packages/linux/patches/linux-3.1-rc9-071-silence_i915_agp-module-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-071-silence_i915_agp-module-0.1.patch rename to packages/linux/patches/linux-3.1-rc9-071-silence_i915_agp-module-0.1.patch diff --git a/packages/linux/patches/linux-3.1-rc8-716_mm-zero_swappiness.patch b/packages/linux/patches/linux-3.1-rc9-716_mm-zero_swappiness.patch similarity index 100% rename from packages/linux/patches/linux-3.1-rc8-716_mm-zero_swappiness.patch rename to packages/linux/patches/linux-3.1-rc9-716_mm-zero_swappiness.patch From d49131cdf0cd0af2a9d90ce230b046abc2ffa091 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 5 Oct 2011 23:16:08 +0200 Subject: [PATCH 06/11] libiconv: update to libiconv-1.14 Signed-off-by: Stephan Raue --- packages/devel/libiconv/build | 3 +++ packages/devel/libiconv/meta | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/devel/libiconv/build b/packages/devel/libiconv/build index 17a9ace656..a57ebe0ffd 100755 --- a/packages/devel/libiconv/build +++ b/packages/devel/libiconv/build @@ -22,6 +22,9 @@ . config/options $1 +# libiconv-1.14 fails to build with LTO support + strip_lto + cd $PKG_BUILD ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ diff --git a/packages/devel/libiconv/meta b/packages/devel/libiconv/meta index 1488a22983..09eb14abfc 100644 --- a/packages/devel/libiconv/meta +++ b/packages/devel/libiconv/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="libiconv" -PKG_VERSION="1.13.1" +PKG_VERSION="1.14" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" From 8c8b7c640cb8494b2943b896ba7524ce2258dab5 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 5 Oct 2011 23:16:54 +0200 Subject: [PATCH 07/11] autoupdate: fix script if 'latest' file cant be downloaded Signed-off-by: Stephan Raue --- packages/tools/autoupdate/scripts/autoupdate.devel | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/tools/autoupdate/scripts/autoupdate.devel b/packages/tools/autoupdate/scripts/autoupdate.devel index c33da10679..4642419fa2 100755 --- a/packages/tools/autoupdate/scripts/autoupdate.devel +++ b/packages/tools/autoupdate/scripts/autoupdate.devel @@ -79,6 +79,10 @@ if [ ! -f /var/lock/update.lock ]; then # compare installed version with latest released version THIS_VERSION="`echo "$THIS_VERSION" | cut -d "-" -f3 | tr -d "r"`" + if [ -Z $NEW_VERSION ]; then + NEW_VERSION="$THIS_VERSION" + fi + if [ "$THIS_VERSION" -lt "$NEW_VERSION" ]; then if [ "$AUTOUPDATE" = "manually" -o "$AUTOUPDATE" = "manual" ]; then From bb34f98164e4c49fb1b3621b61e718d18c5f7eff Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 5 Oct 2011 23:28:25 +0200 Subject: [PATCH 08/11] eventlircd: remove KEY_MENU=KEY_EXIT mapping for X10 remotes Signed-off-by: Stephan Raue --- packages/sysutils/remote/eventlircd/evmap/03_0bc7_0006.evmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/remote/eventlircd/evmap/03_0bc7_0006.evmap b/packages/sysutils/remote/eventlircd/evmap/03_0bc7_0006.evmap index abad061a8e..609980333a 100644 --- a/packages/sysutils/remote/eventlircd/evmap/03_0bc7_0006.evmap +++ b/packages/sysutils/remote/eventlircd/evmap/03_0bc7_0006.evmap @@ -49,7 +49,7 @@ KEY_HOME = KEY_PROG1 # Start Key KEY_D = KEY_PROG1 # Start Key (World) - KEY_MENU = KEY_EXIT # Back +# KEY_MENU = KEY_EXIT # Back KEY_BACK = KEY_EXIT # Back KEY_FRONT = KEY_EXIT # Back KEY_END = KEY_DELETE # Button "RC" From 9a8fa91627d90d0dcbcd6c915365716b0f96cd26 Mon Sep 17 00:00:00 2001 From: mrdominuzq Date: Mon, 3 Oct 2011 16:03:31 +0300 Subject: [PATCH 09/11] Alsa-plugins: updated to 1.0.24 --- packages/audio/alsa-plugins/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/audio/alsa-plugins/meta b/packages/audio/alsa-plugins/meta index c40512074f..5a7add224c 100644 --- a/packages/audio/alsa-plugins/meta +++ b/packages/audio/alsa-plugins/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="alsa-plugins" -PKG_VERSION="1.0.23" +PKG_VERSION="1.0.24" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" From e0665acca7d7f95d42954e1416d34f6f87b3eefe Mon Sep 17 00:00:00 2001 From: mrdominuzq Date: Tue, 4 Oct 2011 12:56:22 +0300 Subject: [PATCH 10/11] added intltoolize --force for success build --- packages/sysutils/upower/build | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/sysutils/upower/build b/packages/sysutils/upower/build index 99c7db3d8e..7d3507c2fe 100755 --- a/packages/sysutils/upower/build +++ b/packages/sysutils/upower/build @@ -23,6 +23,7 @@ . config/options $1 cd $PKG_BUILD +intltoolize --force ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ --prefix=/usr \ From c08dcd418f023ce0ecf418a30843462be86dc621 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 6 Oct 2011 01:40:16 +0200 Subject: [PATCH 11/11] upower: reenable autoreconf Signed-off-by: Stephan Raue --- packages/sysutils/upower/meta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/upower/meta b/packages/sysutils/upower/meta index b346d5bb80..0ee19e7b86 100644 --- a/packages/sysutils/upower/meta +++ b/packages/sysutils/upower/meta @@ -33,4 +33,4 @@ PKG_SHORTDESC="upower: a modular hardware abstraction layer designed for use in PKG_LONGDESC="Upower is a modular hardware abstraction layer designed for use in Linux systems that is designed to simplify device management and replace the current monolithic Linux HAL. Upower includes the ability to enumerate system devices and send notifications when hardware is added or removed from the computer system." PKG_IS_ADDON="no" -PKG_AUTORECONF="no" +PKG_AUTORECONF="yes"