diff --git a/packages/addons/service/multimedia/hts-tvheadend/config/settings.xml b/packages/addons/service/multimedia/hts-tvheadend/config/settings.xml index 71317cd4ce..8fec81edba 100644 --- a/packages/addons/service/multimedia/hts-tvheadend/config/settings.xml +++ b/packages/addons/service/multimedia/hts-tvheadend/config/settings.xml @@ -1,5 +1,6 @@ + diff --git a/packages/addons/service/multimedia/hts-tvheadend/source/bin/tvheadend.start b/packages/addons/service/multimedia/hts-tvheadend/source/bin/tvheadend.start index 796369e49e..2014cff73d 100755 --- a/packages/addons/service/multimedia/hts-tvheadend/source/bin/tvheadend.start +++ b/packages/addons/service/multimedia/hts-tvheadend/source/bin/tvheadend.start @@ -80,7 +80,9 @@ mkdir -p $ADDON_HOME if [ -f "$LOCKDIR/$LOCKFILE" ] ; then break fi - if [ "$WAIT_FOR_FEINIT" == "true" ] && [ ! -e /dev/dvb/adapter*/frontend* ] ; then + # (wait for) at least 1 adapter (xbmc allows to set 0) + [ $NUM_ADAPTERS -lt 1 ] && NUM_ADAPTERS=1 + if [ "$WAIT_FOR_FEINIT" == "true" ] && [ ! -e /dev/dvb/adapter$((NUM_ADAPTERS-1))/frontend* ] ; then sleep 1 continue fi diff --git a/packages/addons/service/multimedia/hts-tvheadend/source/resources/language/English/strings.xml b/packages/addons/service/multimedia/hts-tvheadend/source/resources/language/English/strings.xml index 3b6c054e15..f718c0d9bd 100644 --- a/packages/addons/service/multimedia/hts-tvheadend/source/resources/language/English/strings.xml +++ b/packages/addons/service/multimedia/hts-tvheadend/source/resources/language/English/strings.xml @@ -11,5 +11,6 @@ DVB Configuration Unload DVB mudules before suspend Wait for frontend initialization + Number of adapters to wait for diff --git a/packages/addons/service/multimedia/hts-tvheadend/source/resources/settings.xml b/packages/addons/service/multimedia/hts-tvheadend/source/resources/settings.xml index 59ff7fde8b..3a84c2d295 100644 --- a/packages/addons/service/multimedia/hts-tvheadend/source/resources/settings.xml +++ b/packages/addons/service/multimedia/hts-tvheadend/source/resources/settings.xml @@ -13,6 +13,7 @@ + diff --git a/packages/addons/service/multimedia/vdr-addon/config/settings.xml b/packages/addons/service/multimedia/vdr-addon/config/settings.xml index 3e4f06fafa..c20d288e02 100644 --- a/packages/addons/service/multimedia/vdr-addon/config/settings.xml +++ b/packages/addons/service/multimedia/vdr-addon/config/settings.xml @@ -1,5 +1,6 @@ + diff --git a/packages/addons/service/multimedia/vdr-addon/source/bin/vdr.start b/packages/addons/service/multimedia/vdr-addon/source/bin/vdr.start index 3c87b62165..b2d9efce6b 100755 --- a/packages/addons/service/multimedia/vdr-addon/source/bin/vdr.start +++ b/packages/addons/service/multimedia/vdr-addon/source/bin/vdr.start @@ -145,7 +145,9 @@ if [ ! "$(pidof vdr.bin)" ];then if [ -f "$LOCKDIR/$LOCKFILE" ] ; then break fi - if [ "$WAIT_FOR_FEINIT" == "true" ] && [ ! -e /dev/dvb/adapter*/frontend* ] ; then + # (wait for) at least 1 adapter (xbmc allows to set 0) + [ $NUM_ADAPTERS -lt 1 ] && NUM_ADAPTERS=1 + if [ "$WAIT_FOR_FEINIT" == "true" ] && [ ! -e /dev/dvb/adapter$((NUM_ADAPTERS-1))/frontend* ] ; then sleep 1 continue fi diff --git a/packages/addons/service/multimedia/vdr-addon/source/resources/language/English/strings.xml b/packages/addons/service/multimedia/vdr-addon/source/resources/language/English/strings.xml index 63c7a3b21e..cf98f031a9 100644 --- a/packages/addons/service/multimedia/vdr-addon/source/resources/language/English/strings.xml +++ b/packages/addons/service/multimedia/vdr-addon/source/resources/language/English/strings.xml @@ -6,6 +6,7 @@ DVB Configuration Unload DVB mudules before suspend Wait for frontend initialization + Number of adapters to wait for Plugin Configuration Enable plugin: iptv Enable plugin: streamdev-client diff --git a/packages/addons/service/multimedia/vdr-addon/source/resources/settings.xml b/packages/addons/service/multimedia/vdr-addon/source/resources/settings.xml index 6153ea7578..465ab5559a 100644 --- a/packages/addons/service/multimedia/vdr-addon/source/resources/settings.xml +++ b/packages/addons/service/multimedia/vdr-addon/source/resources/settings.xml @@ -4,6 +4,7 @@ + diff --git a/packages/graphics/bcm2835-driver/meta b/packages/graphics/bcm2835-driver/meta index e97df02409..dccbbb7947 100644 --- a/packages/graphics/bcm2835-driver/meta +++ b/packages/graphics/bcm2835-driver/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="bcm2835-driver" -PKG_VERSION="4ec01c7" +PKG_VERSION="cb9513f" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="nonfree" diff --git a/packages/graphics/libdrm/build b/packages/graphics/libdrm/build index 9bb8b596cd..ccf5d0e12b 100755 --- a/packages/graphics/libdrm/build +++ b/packages/graphics/libdrm/build @@ -25,7 +25,7 @@ get_graphicdrivers DRM_CONFIG="--disable-libkms --disable-intel --disable-radeon" -DRM_CONFIG="$DRM_CONFIG --disable-nouveau --disable-vmwgfx-experimental-api" +DRM_CONFIG="$DRM_CONFIG --disable-nouveau-experimental-api --disable-vmwgfx-experimental-api" for drv in $GRAPHIC_DRIVERS; do [ "$drv" = "i915" -o "$drv" = "i965" ] && \ diff --git a/packages/graphics/libdrm/meta b/packages/graphics/libdrm/meta index c45275ff50..63d35ee25c 100644 --- a/packages/graphics/libdrm/meta +++ b/packages/graphics/libdrm/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="libdrm" -PKG_VERSION="2.4.35" +PKG_VERSION="2.4.33" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/initramfs/sysutils/busybox-initramfs/scripts/init b/packages/initramfs/sysutils/busybox-initramfs/scripts/init index 9c2a709eb9..b5eff1045d 100755 --- a/packages/initramfs/sysutils/busybox-initramfs/scripts/init +++ b/packages/initramfs/sysutils/busybox-initramfs/scripts/init @@ -366,7 +366,7 @@ NBD_DEVS="0" check_disks() { progress "Checking disks" - if [ -x /sbin/fsck_hfs ]; then + if [ -x /bin/fsck_hfs ]; then # deal with hfs partitions hfsdiskprep fi diff --git a/packages/linux/meta b/packages/linux/meta index fc13ffdfc8..cdc6c59dd2 100644 --- a/packages/linux/meta +++ b/packages/linux/meta @@ -21,7 +21,7 @@ PKG_NAME="linux" PKG_VERSION="3.5" if [ "$LINUX" = "3.2" ]; then - PKG_VERSION="3.2.26" + PKG_VERSION="3.2.27" fi PKG_REV="1" PKG_ARCH="any" diff --git a/packages/linux/patches/linux-3.2.26-000_crosscompile.patch b/packages/linux/patches/linux-3.2.27-000_crosscompile.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-000_crosscompile.patch rename to packages/linux/patches/linux-3.2.27-000_crosscompile.patch diff --git a/packages/linux/patches/linux-3.2.26-003-no_dev_console.patch b/packages/linux/patches/linux-3.2.27-003-no_dev_console.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-003-no_dev_console.patch rename to packages/linux/patches/linux-3.2.27-003-no_dev_console.patch diff --git a/packages/linux/patches/linux-3.2.26-004_lower_undefined_mode_timeout.patch b/packages/linux/patches/linux-3.2.27-004_lower_undefined_mode_timeout.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-004_lower_undefined_mode_timeout.patch rename to packages/linux/patches/linux-3.2.27-004_lower_undefined_mode_timeout.patch diff --git a/packages/linux/patches/linux-3.2.26-006_enable_utf8.patch b/packages/linux/patches/linux-3.2.27-006_enable_utf8.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-006_enable_utf8.patch rename to packages/linux/patches/linux-3.2.27-006_enable_utf8.patch diff --git a/packages/linux/patches/linux-3.2.26-007_die_floppy_die.patch b/packages/linux/patches/linux-3.2.27-007_die_floppy_die.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-007_die_floppy_die.patch rename to packages/linux/patches/linux-3.2.27-007_die_floppy_die.patch diff --git a/packages/linux/patches/linux-3.2.26-009_disable_i8042_check_on_apple_mac.patch b/packages/linux/patches/linux-3.2.27-009_disable_i8042_check_on_apple_mac.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-009_disable_i8042_check_on_apple_mac.patch rename to packages/linux/patches/linux-3.2.27-009_disable_i8042_check_on_apple_mac.patch diff --git a/packages/linux/patches/linux-3.2.26-052-aureal_remote_quirk-0.1.patch b/packages/linux/patches/linux-3.2.27-052-aureal_remote_quirk-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-052-aureal_remote_quirk-0.1.patch rename to packages/linux/patches/linux-3.2.27-052-aureal_remote_quirk-0.1.patch diff --git a/packages/linux/patches/linux-3.2.26-053-spinelplus-remote-0.1.patch b/packages/linux/patches/linux-3.2.27-053-spinelplus-remote-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-053-spinelplus-remote-0.1.patch rename to packages/linux/patches/linux-3.2.27-053-spinelplus-remote-0.1.patch diff --git a/packages/linux/patches/linux-3.2.26-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch b/packages/linux/patches/linux-3.2.27-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch rename to packages/linux/patches/linux-3.2.27-054-nuvoton_revert_d7b290a1056c5564eec8a1b169c6e84ff3f54c13.patch diff --git a/packages/linux/patches/linux-3.2.26-056-Formosa-IR606.patch b/packages/linux/patches/linux-3.2.27-056-Formosa-IR606.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-056-Formosa-IR606.patch rename to packages/linux/patches/linux-3.2.27-056-Formosa-IR606.patch diff --git a/packages/linux/patches/linux-3.2.26-057.01-media-ati_remote-allow-specifying-a-default-keymap-s.patch b/packages/linux/patches/linux-3.2.27-057.01-media-ati_remote-allow-specifying-a-default-keymap-s.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-057.01-media-ati_remote-allow-specifying-a-default-keymap-s.patch rename to packages/linux/patches/linux-3.2.27-057.01-media-ati_remote-allow-specifying-a-default-keymap-s.patch diff --git a/packages/linux/patches/linux-3.2.26-057.02-media-ati_remote-add-support-for-Medion-X10-Digitain.patch b/packages/linux/patches/linux-3.2.27-057.02-media-ati_remote-add-support-for-Medion-X10-Digitain.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-057.02-media-ati_remote-add-support-for-Medion-X10-Digitain.patch rename to packages/linux/patches/linux-3.2.27-057.02-media-ati_remote-add-support-for-Medion-X10-Digitain.patch diff --git a/packages/linux/patches/linux-3.2.26-057.03-media-ati_remote-add-keymap-for-Medion-X10-OR2x-remo.patch b/packages/linux/patches/linux-3.2.27-057.03-media-ati_remote-add-keymap-for-Medion-X10-OR2x-remo.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-057.03-media-ati_remote-add-keymap-for-Medion-X10-OR2x-remo.patch rename to packages/linux/patches/linux-3.2.27-057.03-media-ati_remote-add-keymap-for-Medion-X10-OR2x-remo.patch diff --git a/packages/linux/patches/linux-3.2.26-057.04-media-ati_remote-add-regular-up-down-buttons-to-Medi.patch b/packages/linux/patches/linux-3.2.27-057.04-media-ati_remote-add-regular-up-down-buttons-to-Medi.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-057.04-media-ati_remote-add-regular-up-down-buttons-to-Medi.patch rename to packages/linux/patches/linux-3.2.27-057.04-media-ati_remote-add-regular-up-down-buttons-to-Medi.patch diff --git a/packages/linux/patches/linux-3.2.26-071-silence_i915_agp-module-0.1.patch b/packages/linux/patches/linux-3.2.27-071-silence_i915_agp-module-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-071-silence_i915_agp-module-0.1.patch rename to packages/linux/patches/linux-3.2.27-071-silence_i915_agp-module-0.1.patch diff --git a/packages/linux/patches/linux-3.2.26-081-drm_cea_modes.patch b/packages/linux/patches/linux-3.2.27-081-drm_cea_modes.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-081-drm_cea_modes.patch rename to packages/linux/patches/linux-3.2.27-081-drm_cea_modes.patch diff --git a/packages/linux/patches/linux-3.2.26-201-add_Anysee_T2C_support-0.1.patch b/packages/linux/patches/linux-3.2.27-201-add_Anysee_T2C_support-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-201-add_Anysee_T2C_support-0.1.patch rename to packages/linux/patches/linux-3.2.27-201-add_Anysee_T2C_support-0.1.patch diff --git a/packages/linux/patches/linux-3.2.26-202-add_HVR930C_support-0.1.patch b/packages/linux/patches/linux-3.2.27-202-add_HVR930C_support-0.1.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-202-add_HVR930C_support-0.1.patch rename to packages/linux/patches/linux-3.2.27-202-add_HVR930C_support-0.1.patch diff --git a/packages/linux/patches/linux-3.2.26-203-stb0899_enable_low_symbol_rate.patch b/packages/linux/patches/linux-3.2.27-203-stb0899_enable_low_symbol_rate.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-203-stb0899_enable_low_symbol_rate.patch rename to packages/linux/patches/linux-3.2.27-203-stb0899_enable_low_symbol_rate.patch diff --git a/packages/linux/patches/linux-3.2.26-204-add_Formosa_eHome_Infrared_Receiver.patch b/packages/linux/patches/linux-3.2.27-204-add_Formosa_eHome_Infrared_Receiver.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-204-add_Formosa_eHome_Infrared_Receiver.patch rename to packages/linux/patches/linux-3.2.27-204-add_Formosa_eHome_Infrared_Receiver.patch diff --git a/packages/linux/patches/linux-3.2.26-210-add_DVBSky_support.patch b/packages/linux/patches/linux-3.2.27-210-add_DVBSky_support.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-210-add_DVBSky_support.patch rename to packages/linux/patches/linux-3.2.27-210-add_DVBSky_support.patch diff --git a/packages/linux/patches/linux-3.2.26-211-add_TeVii_s471_support.patch b/packages/linux/patches/linux-3.2.27-211-add_TeVii_s471_support.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-211-add_TeVii_s471_support.patch rename to packages/linux/patches/linux-3.2.27-211-add_TeVii_s471_support.patch diff --git a/packages/linux/patches/linux-3.2.26-212-mantis_stb0899_faster_lock.patch b/packages/linux/patches/linux-3.2.27-212-mantis_stb0899_faster_lock.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-212-mantis_stb0899_faster_lock.patch rename to packages/linux/patches/linux-3.2.27-212-mantis_stb0899_faster_lock.patch diff --git a/packages/linux/patches/linux-3.2.26-213-cinergy_s2_usb_r2.patch b/packages/linux/patches/linux-3.2.27-213-cinergy_s2_usb_r2.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-213-cinergy_s2_usb_r2.patch rename to packages/linux/patches/linux-3.2.27-213-cinergy_s2_usb_r2.patch diff --git a/packages/linux/patches/linux-3.2.26-251-acpi-5.0_support.patch b/packages/linux/patches/linux-3.2.27-251-acpi-5.0_support.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-251-acpi-5.0_support.patch rename to packages/linux/patches/linux-3.2.27-251-acpi-5.0_support.patch diff --git a/packages/linux/patches/linux-3.2.26-601-RPi_support-f23da7f.patch b/packages/linux/patches/linux-3.2.27-601-RPi_support-f23da7f.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-601-RPi_support-f23da7f.patch rename to packages/linux/patches/linux-3.2.27-601-RPi_support-f23da7f.patch diff --git a/packages/linux/patches/linux-3.2.26-901_broken_bluetooth.patch b/packages/linux/patches/linux-3.2.27-901_broken_bluetooth.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-901_broken_bluetooth.patch rename to packages/linux/patches/linux-3.2.27-901_broken_bluetooth.patch diff --git a/packages/linux/patches/linux-3.2.26-920_add_rtl8168.patch b/packages/linux/patches/linux-3.2.27-920_add_rtl8168.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-920_add_rtl8168.patch rename to packages/linux/patches/linux-3.2.27-920_add_rtl8168.patch diff --git a/packages/linux/patches/linux-3.2.26-990-xc5000_add_support_for_get_if_frequency.patch b/packages/linux/patches/linux-3.2.27-990-xc5000_add_support_for_get_if_frequency.patch similarity index 100% rename from packages/linux/patches/linux-3.2.26-990-xc5000_add_support_for_get_if_frequency.patch rename to packages/linux/patches/linux-3.2.27-990-xc5000_add_support_for_get_if_frequency.patch diff --git a/packages/mediacenter/xbmc/patches/xbmc-11.0.1-464-add_eject_keymapping_for_lirc-0.1.patch b/packages/mediacenter/xbmc/patches/xbmc-11.0.1-464-add_eject_keymapping_for_lirc-0.1.patch deleted file mode 100644 index 56c56016b5..0000000000 --- a/packages/mediacenter/xbmc/patches/xbmc-11.0.1-464-add_eject_keymapping_for_lirc-0.1.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur xbmc-10.1-Dharma/system/keymaps/remote.xml xbmc-10.1-Dharma.patch/system/keymaps/remote.xml ---- xbmc-10.1-Dharma/system/keymaps/remote.xml 2011-03-08 02:49:23.000000000 +0100 -+++ xbmc-10.1-Dharma.patch/system/keymaps/remote.xml 2011-06-18 01:48:26.887811969 +0200 -@@ -63,6 +63,7 @@ - VolumeDown - Mute - XBMC.ShutDown() -+ XBMC.EjectTray() - XBMC.ActivateWindow(MyVideos) - XBMC.ActivateWindow(MyMusic) - XBMC.ActivateWindow(MyPictures) diff --git a/packages/mediacenter/xbmc/patches/xbmc-pvr-11.0.1-464-add_eject_keymapping_for_lirc-0.1.patch b/packages/mediacenter/xbmc/patches/xbmc-pvr-11.0.1-464-add_eject_keymapping_for_lirc-0.1.patch deleted file mode 100644 index 56c56016b5..0000000000 --- a/packages/mediacenter/xbmc/patches/xbmc-pvr-11.0.1-464-add_eject_keymapping_for_lirc-0.1.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur xbmc-10.1-Dharma/system/keymaps/remote.xml xbmc-10.1-Dharma.patch/system/keymaps/remote.xml ---- xbmc-10.1-Dharma/system/keymaps/remote.xml 2011-03-08 02:49:23.000000000 +0100 -+++ xbmc-10.1-Dharma.patch/system/keymaps/remote.xml 2011-06-18 01:48:26.887811969 +0200 -@@ -63,6 +63,7 @@ - VolumeDown - Mute - XBMC.ShutDown() -+ XBMC.EjectTray() - XBMC.ActivateWindow(MyVideos) - XBMC.ActivateWindow(MyMusic) - XBMC.ActivateWindow(MyPictures) diff --git a/packages/multimedia/ffmpeg/patches/ffmpeg-0.10.4-0031-add-S_DVBSUB-to-list-of-codecs-in-mkv-containers.patch b/packages/multimedia/ffmpeg/patches/ffmpeg-0.10.4-911-add-S_DVBSUB-to-list-of-codecs-in-mkv-containers.patch similarity index 100% rename from packages/multimedia/ffmpeg/patches/ffmpeg-0.10.4-0031-add-S_DVBSUB-to-list-of-codecs-in-mkv-containers.patch rename to packages/multimedia/ffmpeg/patches/ffmpeg-0.10.4-911-add-S_DVBSUB-to-list-of-codecs-in-mkv-containers.patch diff --git a/packages/network/iptables/meta b/packages/network/iptables/meta index e252536f5f..4f48c03c67 100644 --- a/packages/network/iptables/meta +++ b/packages/network/iptables/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="iptables" -PKG_VERSION="1.4.14" +PKG_VERSION="1.4.15" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/network/samba/meta b/packages/network/samba/meta index b7aba30ecb..d2623be7b5 100644 --- a/packages/network/samba/meta +++ b/packages/network/samba/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="samba" -PKG_VERSION="3.6.6" +PKG_VERSION="3.6.7" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/network/samba/patches/samba-3.6.6-010_crosscompile-0.1.patch b/packages/network/samba/patches/samba-3.6.7-010_crosscompile-0.1.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-010_crosscompile-0.1.patch rename to packages/network/samba/patches/samba-3.6.7-010_crosscompile-0.1.patch diff --git a/packages/network/samba/patches/samba-3.6.6-110-multicall.patch b/packages/network/samba/patches/samba-3.6.7-110-multicall.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-110-multicall.patch rename to packages/network/samba/patches/samba-3.6.7-110-multicall.patch diff --git a/packages/network/samba/patches/samba-3.6.6-120-add_missing_ifdef.patch b/packages/network/samba/patches/samba-3.6.7-120-add_missing_ifdef.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-120-add_missing_ifdef.patch rename to packages/network/samba/patches/samba-3.6.7-120-add_missing_ifdef.patch diff --git a/packages/network/samba/patches/samba-3.6.6-200-remove_printer_support.patch b/packages/network/samba/patches/samba-3.6.7-200-remove_printer_support.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-200-remove_printer_support.patch rename to packages/network/samba/patches/samba-3.6.7-200-remove_printer_support.patch diff --git a/packages/network/samba/patches/samba-3.6.6-210-remove_ad_support.patch b/packages/network/samba/patches/samba-3.6.7-210-remove_ad_support.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-210-remove_ad_support.patch rename to packages/network/samba/patches/samba-3.6.7-210-remove_ad_support.patch diff --git a/packages/network/samba/patches/samba-3.6.6-220-remove_services.patch b/packages/network/samba/patches/samba-3.6.7-220-remove_services.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-220-remove_services.patch rename to packages/network/samba/patches/samba-3.6.7-220-remove_services.patch diff --git a/packages/network/samba/patches/samba-3.6.6-230-remove_winreg_support.patch b/packages/network/samba/patches/samba-3.6.7-230-remove_winreg_support.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-230-remove_winreg_support.patch rename to packages/network/samba/patches/samba-3.6.7-230-remove_winreg_support.patch diff --git a/packages/network/samba/patches/samba-3.6.6-240-remove_dfs_api.patch b/packages/network/samba/patches/samba-3.6.7-240-remove_dfs_api.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-240-remove_dfs_api.patch rename to packages/network/samba/patches/samba-3.6.7-240-remove_dfs_api.patch diff --git a/packages/network/samba/patches/samba-3.6.6-250-remove_domain_logon.patch b/packages/network/samba/patches/samba-3.6.7-250-remove_domain_logon.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-250-remove_domain_logon.patch rename to packages/network/samba/patches/samba-3.6.7-250-remove_domain_logon.patch diff --git a/packages/network/samba/patches/samba-3.6.6-260-remove_samr.patch b/packages/network/samba/patches/samba-3.6.7-260-remove_samr.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-260-remove_samr.patch rename to packages/network/samba/patches/samba-3.6.7-260-remove_samr.patch diff --git a/packages/network/samba/patches/samba-3.6.6-270-remove_registry_backend.patch b/packages/network/samba/patches/samba-3.6.7-270-remove_registry_backend.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-270-remove_registry_backend.patch rename to packages/network/samba/patches/samba-3.6.7-270-remove_registry_backend.patch diff --git a/packages/network/samba/patches/samba-3.6.6-280-strip_srvsvc.patch b/packages/network/samba/patches/samba-3.6.7-280-strip_srvsvc.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-280-strip_srvsvc.patch rename to packages/network/samba/patches/samba-3.6.7-280-strip_srvsvc.patch diff --git a/packages/network/samba/patches/samba-3.6.6-290-remove_lsa.patch b/packages/network/samba/patches/samba-3.6.7-290-remove_lsa.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-290-remove_lsa.patch rename to packages/network/samba/patches/samba-3.6.7-290-remove_lsa.patch diff --git a/packages/network/samba/patches/samba-3.6.6-300-assert_debug_level.patch b/packages/network/samba/patches/samba-3.6.7-300-assert_debug_level.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-300-assert_debug_level.patch rename to packages/network/samba/patches/samba-3.6.7-300-assert_debug_level.patch diff --git a/packages/network/samba/patches/samba-3.6.6-310-remove_error_strings.patch b/packages/network/samba/patches/samba-3.6.7-310-remove_error_strings.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-310-remove_error_strings.patch rename to packages/network/samba/patches/samba-3.6.7-310-remove_error_strings.patch diff --git a/packages/network/samba/patches/samba-3.6.6-320-debug_level_checks.patch b/packages/network/samba/patches/samba-3.6.7-320-debug_level_checks.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-320-debug_level_checks.patch rename to packages/network/samba/patches/samba-3.6.7-320-debug_level_checks.patch diff --git a/packages/network/samba/patches/samba-3.6.6-330-librpc_default_print.patch b/packages/network/samba/patches/samba-3.6.7-330-librpc_default_print.patch similarity index 100% rename from packages/network/samba/patches/samba-3.6.6-330-librpc_default_print.patch rename to packages/network/samba/patches/samba-3.6.7-330-librpc_default_print.patch diff --git a/packages/sysutils/e2fsprogs/meta b/packages/sysutils/e2fsprogs/meta index 98d24dbc51..78bc067806 100644 --- a/packages/sysutils/e2fsprogs/meta +++ b/packages/sysutils/e2fsprogs/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="e2fsprogs" -PKG_VERSION="1.42.4" +PKG_VERSION="1.42.5" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/sysutils/systemd/meta b/packages/sysutils/systemd/meta index 01f620a4d4..260985f711 100644 --- a/packages/sysutils/systemd/meta +++ b/packages/sysutils/systemd/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="systemd" -PKG_VERSION="187" +PKG_VERSION="188" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/sysutils/systemd/patches/systemd-187-cpp.patch b/packages/sysutils/systemd/patches/systemd-187-cpp.patch deleted file mode 100644 index ef0c6d8dc6..0000000000 --- a/packages/sysutils/systemd/patches/systemd-187-cpp.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff -Naur systemd-187/Makefile.am systemd-187.patch/Makefile.am ---- systemd-187/Makefile.am 2012-07-20 00:40:16.000000000 +0200 -+++ systemd-187.patch/Makefile.am 2012-07-21 12:50:00.527354759 +0200 -@@ -1026,7 +1026,7 @@ - src/core/syscall-to-name.h - - src/core/syscall-list.txt: Makefile -- $(AM_V_GEN)cpp $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/syscall.h < /dev/null | $(AWK) '/^#define[ \t]+__NR_[^ ]+[ \t]+[0-9]/ { sub(/__NR_/, "", $$2); print $$2; }' > $@ -+ $(AM_V_GEN)$(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/syscall.h < /dev/null | $(AWK) '/^#define[ \t]+__NR_[^ ]+[ \t]+[0-9]/ { sub(/__NR_/, "", $$2); print $$2; }' > $@ - - src/core/syscall-from-name.gperf: src/core/syscall-list.txt Makefile - $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct syscall_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, __NR_%s\n", $$1, $$1 }' < $< > $@ -@@ -2199,7 +2199,7 @@ - - src/udev/keymap/keys.txt: Makefile - $(AM_V_at)mkdir -p src/udev/keymap -- $(AM_V_GEN)cpp $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/input.h < /dev/null | $(AWK) '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9]/ { if ($$2 != "KEY_MAX") { print $$2 } }' | sed 's/^KEY_COFFEE$$/KEY_SCREENLOCK/' > $@ -+ $(AM_V_GEN)$(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/input.h < /dev/null | $(AWK) '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9]/ { if ($$2 != "KEY_MAX") { print $$2 } }' | sed 's/^KEY_COFFEE$$/KEY_SCREENLOCK/' > $@ - - src/udev/keymap/keys-from-name.gperf: src/udev/keymap/keys.txt Makefile - $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print $$1 ", " $$1 }' < $< > $@ -diff -Naur systemd-187/Makefile.in systemd-187.patch/Makefile.in ---- systemd-187/Makefile.in 2012-07-20 00:45:51.000000000 +0200 -+++ systemd-187.patch/Makefile.in 2012-07-21 12:50:26.916860425 +0200 -@@ -9527,7 +9527,7 @@ - $(AWK) 'BEGIN{ keywords=0 ; FS="," ; print "extern const char load_fragment_gperf_nulstr[];" ; print "const char load_fragment_gperf_nulstr[] ="} ; keyword==1 { print "\"" $$1 "\\0\"" } ; /%%/ { keyword=1} ; END { print ";" }' < $< > $@ - - src/core/syscall-list.txt: Makefile -- $(AM_V_GEN)cpp $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/syscall.h < /dev/null | $(AWK) '/^#define[ \t]+__NR_[^ ]+[ \t]+[0-9]/ { sub(/__NR_/, "", $$2); print $$2; }' > $@ -+ $(AM_V_GEN)$(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/syscall.h < /dev/null | $(AWK) '/^#define[ \t]+__NR_[^ ]+[ \t]+[0-9]/ { sub(/__NR_/, "", $$2); print $$2; }' > $@ - - src/core/syscall-from-name.gperf: src/core/syscall-list.txt Makefile - $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct syscall_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, __NR_%s\n", $$1, $$1 }' < $< > $@ -@@ -9636,7 +9636,7 @@ - - @ENABLE_KEYMAP_TRUE@src/udev/keymap/keys.txt: Makefile - @ENABLE_KEYMAP_TRUE@ $(AM_V_at)mkdir -p src/udev/keymap --@ENABLE_KEYMAP_TRUE@ $(AM_V_GEN)cpp $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/input.h < /dev/null | $(AWK) '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9]/ { if ($$2 != "KEY_MAX") { print $$2 } }' | sed 's/^KEY_COFFEE$$/KEY_SCREENLOCK/' > $@ -+@ENABLE_KEYMAP_TRUE@ $(AM_V_GEN)$(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/input.h < /dev/null | $(AWK) '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9]/ { if ($$2 != "KEY_MAX") { print $$2 } }' | sed 's/^KEY_COFFEE$$/KEY_SCREENLOCK/' > $@ - - @ENABLE_KEYMAP_TRUE@src/udev/keymap/keys-from-name.gperf: src/udev/keymap/keys.txt Makefile - @ENABLE_KEYMAP_TRUE@ $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print $$1 ", " $$1 }' < $< > $@ diff --git a/packages/toolchain/devel/eglibc/meta b/packages/toolchain/devel/eglibc/meta index f619323593..721c1883ae 100644 --- a/packages/toolchain/devel/eglibc/meta +++ b/packages/toolchain/devel/eglibc/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="eglibc" -PKG_VERSION="2.15-18222" +PKG_VERSION="2.15-20165" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-RH730856.patch b/packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-RH730856.patch similarity index 100% rename from packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-RH730856.patch rename to packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-RH730856.patch diff --git a/packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-RH737223.patch b/packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-RH737223.patch similarity index 100% rename from packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-RH737223.patch rename to packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-RH737223.patch diff --git a/packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-bad-fix.patch b/packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-bad-fix.patch similarity index 100% rename from packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-bad-fix.patch rename to packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-bad-fix.patch diff --git a/packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-libgcc_eh-1.patch b/packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-libgcc_eh-1.patch similarity index 100% rename from packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-libgcc_eh-1.patch rename to packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-libgcc_eh-1.patch diff --git a/packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-restore-rpc+nis.patch b/packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-restore-rpc+nis.patch similarity index 100% rename from packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-restore-rpc+nis.patch rename to packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-restore-rpc+nis.patch diff --git a/packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-select_fd_type.patch b/packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-select_fd_type.patch similarity index 100% rename from packages/toolchain/devel/eglibc/patches/eglibc-2.15-18222-select_fd_type.patch rename to packages/toolchain/devel/eglibc/patches/eglibc-2.15-20165-select_fd_type.patch diff --git a/packages/tools/bcm2835-bootloader/meta b/packages/tools/bcm2835-bootloader/meta index 5c6bcd738e..0dce1230e2 100644 --- a/packages/tools/bcm2835-bootloader/meta +++ b/packages/tools/bcm2835-bootloader/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="bcm2835-bootloader" -PKG_VERSION="4ec01c7" +PKG_VERSION="cb9513f" PKG_REV="1" PKG_ARCH="arm" PKG_LICENSE="nonfree" diff --git a/packages/x11/driver/xf86-input-evdev/meta b/packages/x11/driver/xf86-input-evdev/meta index 2af89fbc55..7a266826ca 100644 --- a/packages/x11/driver/xf86-input-evdev/meta +++ b/packages/x11/driver/xf86-input-evdev/meta @@ -19,7 +19,7 @@ ################################################################################ PKG_NAME="xf86-input-evdev" -PKG_VERSION="2.7.2" +PKG_VERSION="2.7.3" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="OSS" diff --git a/projects/ATV/linux/linux.i386.conf b/projects/ATV/linux/linux.i386.conf index c724453171..af475c84a5 100644 --- a/projects/ATV/linux/linux.i386.conf +++ b/projects/ATV/linux/linux.i386.conf @@ -505,25 +505,25 @@ CONFIG_CPU_FREQ_TABLE=y # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set -# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set -CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set CONFIG_CPU_FREQ_GOV_PERFORMANCE=y # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set # CONFIG_CPU_FREQ_GOV_USERSPACE is not set CONFIG_CPU_FREQ_GOV_ONDEMAND=y -CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set # # x86 CPU frequency scaling drivers # # CONFIG_X86_PCC_CPUFREQ is not set -CONFIG_X86_ACPI_CPUFREQ=y +# CONFIG_X86_ACPI_CPUFREQ is not set # CONFIG_X86_POWERNOW_K6 is not set # CONFIG_X86_POWERNOW_K7 is not set # CONFIG_X86_POWERNOW_K8 is not set # CONFIG_X86_GX_SUSPMOD is not set # CONFIG_X86_SPEEDSTEP_CENTRINO is not set -# CONFIG_X86_SPEEDSTEP_ICH is not set +CONFIG_X86_SPEEDSTEP_ICH=y # CONFIG_X86_SPEEDSTEP_SMI is not set # CONFIG_X86_P4_CLOCKMOD is not set # CONFIG_X86_CPUFREQ_NFORCE2 is not set @@ -534,7 +534,8 @@ CONFIG_X86_ACPI_CPUFREQ=y # # shared options # -# CONFIG_X86_SPEEDSTEP_LIB is not set +CONFIG_X86_SPEEDSTEP_LIB=y +# CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y diff --git a/projects/Intel/linux/linux.i386.conf b/projects/Intel/linux/linux.i386.conf index 7680e7e46f..14ac9a8f77 100644 --- a/projects/Intel/linux/linux.i386.conf +++ b/projects/Intel/linux/linux.i386.conf @@ -1150,7 +1150,7 @@ CONFIG_ETHERNET=y CONFIG_NET_VENDOR_ATHEROS=y # CONFIG_ATL2 is not set # CONFIG_ATL1 is not set -# CONFIG_ATL1E is not set +CONFIG_ATL1E=y CONFIG_ATL1C=y CONFIG_NET_VENDOR_BROADCOM=y # CONFIG_B44 is not set diff --git a/projects/Intel/linux/linux.x86_64.conf b/projects/Intel/linux/linux.x86_64.conf index 1b680c84ab..5abb639f20 100644 --- a/projects/Intel/linux/linux.x86_64.conf +++ b/projects/Intel/linux/linux.x86_64.conf @@ -1094,7 +1094,7 @@ CONFIG_ETHERNET=y CONFIG_NET_VENDOR_ATHEROS=y # CONFIG_ATL2 is not set # CONFIG_ATL1 is not set -# CONFIG_ATL1E is not set +CONFIG_ATL1E=y CONFIG_ATL1C=y CONFIG_NET_VENDOR_BROADCOM=y # CONFIG_B44 is not set diff --git a/projects/Virtual/options b/projects/Virtual/options index 168379e320..cd43d274c7 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -254,7 +254,7 @@ # Use Broadcom CrystalHD Decoder Card for video acceleration # (needs Kernelsupport for Broadcom Decoder Card and a supported card) - CRYSTALHD="yes" + CRYSTALHD="no" # build and install remote support (yes / no) REMOTE_SUPPORT="yes"