mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
Merge branch 'master' of github.com:OpenELEC/OpenELEC.tv into openelec-next
Conflicts: packages/initramfs/sysutils/busybox-initramfs/scripts/init
This commit is contained in:
commit
e47c0b9412
@ -19,12 +19,12 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="gdb"
|
PKG_NAME="gdb"
|
||||||
PKG_VERSION="7.3"
|
PKG_VERSION="7.3.1"
|
||||||
PKG_REV="1"
|
PKG_REV="1"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://www.gnu.org/software/gdb/"
|
PKG_SITE="http://www.gnu.org/software/gdb/"
|
||||||
PKG_URL="http://ftp.gnu.org/gnu/gdb/$PKG_NAME-${PKG_VERSION}a.tar.bz2"
|
PKG_URL="http://ftp.gnu.org/gnu/gdb/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
PKG_DEPENDS="ncurses expat"
|
PKG_DEPENDS="ncurses expat"
|
||||||
PKG_BUILD_DEPENDS="toolchain ncurses expat"
|
PKG_BUILD_DEPENDS="toolchain ncurses expat"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
|
@ -210,6 +210,8 @@ NFS_OVERLAY="192.168.1.1:/var/lib/overlay"
|
|||||||
update "Kernel" "$IMAGE_KERNEL" "/flash/$IMAGE_KERNEL"
|
update "Kernel" "$IMAGE_KERNEL" "/flash/$IMAGE_KERNEL"
|
||||||
update "System" "$IMAGE_SYSTEM" "/flash/$IMAGE_SYSTEM"
|
update "System" "$IMAGE_SYSTEM" "/flash/$IMAGE_SYSTEM"
|
||||||
|
|
||||||
|
umount /storage
|
||||||
|
|
||||||
if test "$REBOOT" -eq "1"; then
|
if test "$REBOOT" -eq "1"; then
|
||||||
echo "System reboots now..." && \
|
echo "System reboots now..." && \
|
||||||
/bin/busybox reboot
|
/bin/busybox reboot
|
||||||
@ -226,10 +228,6 @@ NFS_OVERLAY="192.168.1.1:/var/lib/overlay"
|
|||||||
|
|
||||||
# move /flash and /storage to /sysroot
|
# move /flash and /storage to /sysroot
|
||||||
/bin/busybox mount --move /flash /sysroot/flash
|
/bin/busybox mount --move /flash /sysroot/flash
|
||||||
|
|
||||||
if [ -n "$disk" ]; then
|
|
||||||
/bin/busybox mount --move /storage /sysroot/storage
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ -z "$NETBOOT" ]; then
|
if [ -z "$NETBOOT" ]; then
|
||||||
|
@ -23,6 +23,12 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "set cpu's to full power"
|
progress "set cpu's to full power"
|
||||||
|
cpupower frequency-set -g performance > /dev/null 2>&1
|
||||||
|
;;
|
||||||
|
|
||||||
cpupower frequency-set -g performance
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
@ -23,6 +23,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "loading kernel modules"
|
progress "loading kernel modules"
|
||||||
|
|
||||||
@ -31,5 +33,9 @@
|
|||||||
for module in `cat /etc/modules|grep "^[^#]"`; do
|
for module in `cat /etc/modules|grep "^[^#]"`; do
|
||||||
eval "modprobe $module" >/dev/null 2>&1
|
eval "modprobe $module" >/dev/null 2>&1
|
||||||
done
|
done
|
||||||
|
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
44
packages/mediacenter/xbmc/init.d/91_setup-addons
Normal file
44
packages/mediacenter/xbmc/init.d/91_setup-addons
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
################################################################################
|
||||||
|
# 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
|
||||||
|
# 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, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
#
|
||||||
|
# setup XBMC addons
|
||||||
|
#
|
||||||
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
|
progress "setup XBMC addons"
|
||||||
|
|
||||||
|
# hack: add addons to $PATH
|
||||||
|
for i in `find /storage/.xbmc/addons/* -name bin -type d`; do
|
||||||
|
PATH="$PATH:$i"
|
||||||
|
done
|
||||||
|
export PATH
|
||||||
|
|
||||||
|
# hack: make addon-bins executable
|
||||||
|
chmod +x /storage/.xbmc/addons/*/bin/* > /dev/null 2>&1
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
@ -22,6 +22,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec
|
# runlevels: openelec
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "setup XBMC"
|
progress "setup XBMC"
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -131,3 +133,8 @@ EOF
|
|||||||
fi
|
fi
|
||||||
echo "</settings>" >> $HOME/.xbmc/userdata/guisettings.xml
|
echo "</settings>" >> $HOME/.xbmc/userdata/guisettings.xml
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec
|
# runlevels: openelec
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
LIRCDEV="/var/run/lirc/lircd"
|
LIRCDEV="/var/run/lirc/lircd"
|
||||||
[ -e /var/run/lirc/lircd.irtrans ] && LIRCDEV="/var/run/lirc/lircd.irtrans"
|
[ -e /var/run/lirc/lircd.irtrans ] && LIRCDEV="/var/run/lirc/lircd.irtrans"
|
||||||
XBMC_ARGS="--standalone -fs --lircdev $LIRCDEV"
|
XBMC_ARGS="--standalone -fs --lircdev $LIRCDEV"
|
||||||
@ -33,9 +35,6 @@ if $(cat /proc/bus/input/devices | grep Vendor=0471 | grep -q Product=20d9);then
|
|||||||
export SDL_MOUSE_RELATIVE=0
|
export SDL_MOUSE_RELATIVE=0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# hack: make addon-bins executable
|
|
||||||
chmod +x /storage/.xbmc/addons/*/bin/* > /dev/null 2>&1
|
|
||||||
|
|
||||||
# starting autostart script (will be removed later again, dont use it!!!)
|
# starting autostart script (will be removed later again, dont use it!!!)
|
||||||
AUTOSTART="/storage/.config/autostart.sh"
|
AUTOSTART="/storage/.config/autostart.sh"
|
||||||
if [ -f $AUTOSTART ]; then
|
if [ -f $AUTOSTART ]; then
|
||||||
@ -55,7 +54,7 @@ fi
|
|||||||
# set cpu's to 'on demand'
|
# set cpu's to 'on demand'
|
||||||
( usleep 15000000
|
( usleep 15000000
|
||||||
progress "set cpu's to 'on demand'"
|
progress "set cpu's to 'on demand'"
|
||||||
cpupower frequency-set -g ondemand
|
cpupower frequency-set -g ondemand > /dev/null 2>&1
|
||||||
)&
|
)&
|
||||||
|
|
||||||
# starting XBMC
|
# starting XBMC
|
||||||
@ -66,13 +65,13 @@ fi
|
|||||||
|
|
||||||
case "$RET" in
|
case "$RET" in
|
||||||
0)
|
0)
|
||||||
poweroff -f
|
RUNLEVEL="poweroff"
|
||||||
;;
|
;;
|
||||||
64)
|
64)
|
||||||
poweroff -f
|
RUNLEVEL="poweroff"
|
||||||
;;
|
;;
|
||||||
66)
|
66)
|
||||||
reboot
|
RUNLEVEL="reboot"
|
||||||
;;
|
;;
|
||||||
255)
|
255)
|
||||||
echo "Abnormal Exit. Exited with code $RET"
|
echo "Abnormal Exit. Exited with code $RET"
|
||||||
@ -85,3 +84,8 @@ fi
|
|||||||
|
|
||||||
usleep 250000
|
usleep 250000
|
||||||
done
|
done
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/Makefile xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/xbmcmodule/Makefile
|
diff -Naur xbmc-10.1-Dharma/xbmc/lib/libPython/xbmcmodule/Makefile xbmc-10.1-Dharma.patch/xbmc/lib/libPython/xbmcmodule/Makefile
|
||||||
--- xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/Makefile 2011-02-15 13:30:06.000000000 +0100
|
--- xbmc-10.1-Dharma/xbmc/lib/libPython/xbmcmodule/Makefile 2011-03-08 02:49:14.000000000 +0100
|
||||||
+++ xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/xbmcmodule/Makefile 2011-03-03 16:47:38.230032818 +0100
|
+++ xbmc-10.1-Dharma.patch/xbmc/lib/libPython/xbmcmodule/Makefile 2011-09-06 22:59:02.915548511 +0200
|
||||||
@@ -1,8 +1,9 @@
|
@@ -1,8 +1,9 @@
|
||||||
INCLUDES=-I../../../.. -I. -I../../../ -I../../../linux -I../../../../guilib -I../../../utils -I../../../cores -I../../../../lib/jsoncpp/jsoncpp/include
|
INCLUDES=-I../../../.. -I. -I../../../ -I../../../linux -I../../../../guilib -I../../../utils -I../../../cores -I../../../../lib/jsoncpp/jsoncpp/include
|
||||||
|
|
||||||
@ -12,9 +12,9 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/Makefile xbmc-
|
|||||||
include ../../../../Makefile.include
|
include ../../../../Makefile.include
|
||||||
-include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))
|
-include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))
|
||||||
+
|
+
|
||||||
diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp
|
diff -Naur xbmc-10.1-Dharma/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp xbmc-10.1-Dharma.patch/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp
|
||||||
--- xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp 2011-02-15 13:30:06.000000000 +0100
|
--- xbmc-10.1-Dharma/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp 2011-03-08 02:49:14.000000000 +0100
|
||||||
+++ xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp 2011-03-03 16:47:38.257032286 +0100
|
+++ xbmc-10.1-Dharma.patch/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp 2011-09-06 22:59:02.916548524 +0200
|
||||||
@@ -64,6 +64,7 @@
|
@@ -64,6 +64,7 @@
|
||||||
#include "SectionLoader.h"
|
#include "SectionLoader.h"
|
||||||
#include "Settings.h"
|
#include "Settings.h"
|
||||||
@ -68,10 +68,10 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcmodule.cpp
|
|||||||
{NULL, NULL, 0, NULL}
|
{NULL, NULL, 0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp
|
diff -Naur xbmc-10.1-Dharma/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp xbmc-10.1-Dharma.patch/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp
|
||||||
--- xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp 1970-01-01 01:00:00.000000000 +0100
|
--- xbmc-10.1-Dharma/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp 1970-01-01 01:00:00.000000000 +0100
|
||||||
+++ xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp 2011-03-03 16:53:19.588294319 +0100
|
+++ xbmc-10.1-Dharma.patch/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.cpp 2011-09-06 23:43:28.717382455 +0200
|
||||||
@@ -0,0 +1,205 @@
|
@@ -0,0 +1,299 @@
|
||||||
+/*
|
+/*
|
||||||
+ * Copyright (C) 2005-2011 Team XBMC
|
+ * Copyright (C) 2005-2011 Team XBMC
|
||||||
+ * http://www.xbmc.org
|
+ * http://www.xbmc.org
|
||||||
@ -109,6 +109,7 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.
|
|||||||
+#endif
|
+#endif
|
||||||
+#include "../XBPythonDll.h"
|
+#include "../XBPythonDll.h"
|
||||||
+
|
+
|
||||||
|
+#include "FileSystem/Directory.h"
|
||||||
+#include "FileSystem/File.h"
|
+#include "FileSystem/File.h"
|
||||||
+#include "pyutil.h"
|
+#include "pyutil.h"
|
||||||
+
|
+
|
||||||
@ -242,12 +243,105 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.
|
|||||||
+
|
+
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
+ PyDoc_STRVAR(exists__doc__,
|
||||||
|
+ "exists(path)\n"
|
||||||
|
+ "\n"
|
||||||
|
+ "path : file or folder"
|
||||||
|
+ "\n"
|
||||||
|
+ "example:\n"
|
||||||
|
+ " success = xbmcvfs.exists(path)\n");
|
||||||
|
+
|
||||||
|
+ // check for a file or folder existance, mimics Pythons os.path.exists()
|
||||||
|
+ PyObject* vfs_exists(File *self, PyObject *args, PyObject *kwds)
|
||||||
|
+ {
|
||||||
|
+ PyObject *f_line;
|
||||||
|
+ if (!PyArg_ParseTuple(
|
||||||
|
+ args,
|
||||||
|
+ (char*)"O",
|
||||||
|
+ &f_line))
|
||||||
|
+ {
|
||||||
|
+ return NULL;
|
||||||
|
+ }
|
||||||
|
+ CStdString strSource;
|
||||||
|
+ if (!PyXBMCGetUnicodeString(strSource, f_line, 1)) return NULL;
|
||||||
|
+
|
||||||
|
+ bool bResult;
|
||||||
|
+
|
||||||
|
+ Py_BEGIN_ALLOW_THREADS
|
||||||
|
+ bResult = self->pFile->Exists(strSource, false);
|
||||||
|
+ Py_END_ALLOW_THREADS
|
||||||
|
+
|
||||||
|
+ return Py_BuildValue((char*)"b", bResult);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ PyDoc_STRVAR(mkdir__doc__,
|
||||||
|
+ "mkdir(path) -- Create a folder.\n"
|
||||||
|
+ "\n"
|
||||||
|
+ "path : folder\n"
|
||||||
|
+ "\n"
|
||||||
|
+ "example:\n"
|
||||||
|
+ " - success = xbmcvfs.mkdir(path)\n");
|
||||||
|
+ // make a directory
|
||||||
|
+ PyObject* vfs_mkdir(File *self, PyObject *args, PyObject *kwds)
|
||||||
|
+ {
|
||||||
|
+ PyObject *f_line;
|
||||||
|
+ if (!PyArg_ParseTuple(
|
||||||
|
+ args,
|
||||||
|
+ (char*)"O",
|
||||||
|
+ &f_line))
|
||||||
|
+ {
|
||||||
|
+ return NULL;
|
||||||
|
+ }
|
||||||
|
+ CStdString strSource;
|
||||||
|
+ if (!PyXBMCGetUnicodeString(strSource, f_line, 1)) return NULL;
|
||||||
|
+
|
||||||
|
+ bool bResult;
|
||||||
|
+
|
||||||
|
+ Py_BEGIN_ALLOW_THREADS
|
||||||
|
+ bResult = CDirectory::Create(strSource);
|
||||||
|
+ Py_END_ALLOW_THREADS
|
||||||
|
+
|
||||||
|
+ return Py_BuildValue((char*)"b", bResult);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ PyDoc_STRVAR(rmdir__doc__,
|
||||||
|
+ "rmdir(path) -- Remove a folder.\n"
|
||||||
|
+ "\n"
|
||||||
|
+ "path : folder\n"
|
||||||
|
+ "\n"
|
||||||
|
+ "example:\n"
|
||||||
|
+ " - success = xbmcvfs.rmdir(path)\n");
|
||||||
|
+ // remove a directory
|
||||||
|
+ PyObject* vfs_rmdir(File *self, PyObject *args, PyObject *kwds)
|
||||||
|
+ {
|
||||||
|
+ PyObject *f_line;
|
||||||
|
+ if (!PyArg_ParseTuple(
|
||||||
|
+ args,
|
||||||
|
+ (char*)"O",
|
||||||
|
+ &f_line))
|
||||||
|
+ {
|
||||||
|
+ return NULL;
|
||||||
|
+ }
|
||||||
|
+ CStdString strSource;
|
||||||
|
+ if (!PyXBMCGetUnicodeString(strSource, f_line, 1)) return NULL;
|
||||||
|
+
|
||||||
|
+ bool bResult;
|
||||||
|
+
|
||||||
|
+ Py_BEGIN_ALLOW_THREADS
|
||||||
|
+ bResult = CDirectory::Remove(strSource);
|
||||||
|
+ Py_END_ALLOW_THREADS
|
||||||
|
+
|
||||||
|
+ return Py_BuildValue((char*)"b", bResult);
|
||||||
|
+ }
|
||||||
+
|
+
|
||||||
+ // define c functions to be used in python here
|
+ // define c functions to be used in python here
|
||||||
+ PyMethodDef xbmcvfsMethods[] = {
|
+ PyMethodDef xbmcvfsMethods[] = {
|
||||||
+ {(char*)"copy", (PyCFunction)vfs_copy, METH_VARARGS, copy__doc__},
|
+ {(char*)"copy", (PyCFunction)vfs_copy, METH_VARARGS, copy__doc__},
|
||||||
+ {(char*)"delete", (PyCFunction)vfs_delete, METH_VARARGS, delete__doc__},
|
+ {(char*)"delete", (PyCFunction)vfs_delete, METH_VARARGS, delete__doc__},
|
||||||
+ {(char*)"rename", (PyCFunction)vfs_rename, METH_VARARGS, rename__doc__},
|
+ {(char*)"rename", (PyCFunction)vfs_rename, METH_VARARGS, rename__doc__},
|
||||||
|
+ {(char*)"mkdir", (PyCFunction)vfs_mkdir, METH_VARARGS, mkdir__doc__},
|
||||||
|
+ {(char*)"rmdir", (PyCFunction)vfs_rmdir, METH_VARARGS, rmdir__doc__},
|
||||||
|
+ {(char*)"exists", (PyCFunction)vfs_exists, METH_VARARGS, exists__doc__},
|
||||||
+ {NULL, NULL, 0, NULL}
|
+ {NULL, NULL, 0, NULL}
|
||||||
+ };
|
+ };
|
||||||
+
|
+
|
||||||
@ -277,9 +371,9 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/xbmcmodule/xbmcvfsmodule.
|
|||||||
+#ifdef __cplusplus
|
+#ifdef __cplusplus
|
||||||
+}
|
+}
|
||||||
+#endif
|
+#endif
|
||||||
diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/XBPython.cpp xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/XBPython.cpp
|
diff -Naur xbmc-10.1-Dharma/xbmc/lib/libPython/XBPython.cpp xbmc-10.1-Dharma.patch/xbmc/lib/libPython/XBPython.cpp
|
||||||
--- xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/XBPython.cpp 2011-02-15 13:30:09.000000000 +0100
|
--- xbmc-10.1-Dharma/xbmc/lib/libPython/XBPython.cpp 2011-03-08 02:49:15.000000000 +0100
|
||||||
+++ xbmc-Dharma-10.1-c8405db.patch/xbmc/lib/libPython/XBPython.cpp 2011-03-03 16:47:38.270032028 +0100
|
+++ xbmc-10.1-Dharma.patch/xbmc/lib/libPython/XBPython.cpp 2011-09-06 22:59:02.955549037 +0200
|
||||||
@@ -119,6 +119,8 @@
|
@@ -119,6 +119,8 @@
|
||||||
void InitAddonModule(void);
|
void InitAddonModule(void);
|
||||||
void InitAddonTypes(void);
|
void InitAddonTypes(void);
|
||||||
@ -307,9 +401,9 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/lib/libPython/XBPython.cpp xbmc-Dharma-
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/utils/FileUtils.cpp xbmc-Dharma-10.1-c8405db.patch/xbmc/utils/FileUtils.cpp
|
diff -Naur xbmc-10.1-Dharma/xbmc/utils/FileUtils.cpp xbmc-10.1-Dharma.patch/xbmc/utils/FileUtils.cpp
|
||||||
--- xbmc-Dharma-10.1-c8405db/xbmc/utils/FileUtils.cpp 2011-02-15 13:30:05.000000000 +0100
|
--- xbmc-10.1-Dharma/xbmc/utils/FileUtils.cpp 2011-03-08 02:49:14.000000000 +0100
|
||||||
+++ xbmc-Dharma-10.1-c8405db.patch/xbmc/utils/FileUtils.cpp 2011-03-03 16:47:38.279031851 +0100
|
+++ xbmc-10.1-Dharma.patch/xbmc/utils/FileUtils.cpp 2011-09-06 22:59:02.977549326 +0200
|
||||||
@@ -72,3 +72,32 @@
|
@@ -72,3 +72,32 @@
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@ -343,9 +437,9 @@ diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/utils/FileUtils.cpp xbmc-Dharma-10.1-c8
|
|||||||
+ strSize.Format("%d", fileSize); // format size
|
+ strSize.Format("%d", fileSize); // format size
|
||||||
+ return true;
|
+ return true;
|
||||||
+}
|
+}
|
||||||
diff -Naur xbmc-Dharma-10.1-c8405db/xbmc/utils/FileUtils.h xbmc-Dharma-10.1-c8405db.patch/xbmc/utils/FileUtils.h
|
diff -Naur xbmc-10.1-Dharma/xbmc/utils/FileUtils.h xbmc-10.1-Dharma.patch/xbmc/utils/FileUtils.h
|
||||||
--- xbmc-Dharma-10.1-c8405db/xbmc/utils/FileUtils.h 2011-02-15 13:30:05.000000000 +0100
|
--- xbmc-10.1-Dharma/xbmc/utils/FileUtils.h 2011-03-08 02:49:14.000000000 +0100
|
||||||
+++ xbmc-Dharma-10.1-c8405db.patch/xbmc/utils/FileUtils.h 2011-03-03 16:47:38.279031851 +0100
|
+++ xbmc-10.1-Dharma.patch/xbmc/utils/FileUtils.h 2011-09-06 22:59:03.023549930 +0200
|
||||||
@@ -6,4 +6,5 @@
|
@@ -6,4 +6,5 @@
|
||||||
public:
|
public:
|
||||||
static bool DeleteItem(const CFileItemPtr &item);
|
static bool DeleteItem(const CFileItemPtr &item);
|
@ -0,0 +1,12 @@
|
|||||||
|
diff -Naur xbmc-10.1-Dharma/xbmc/FileSystem/FileSmb.cpp xbmc-10.1-Dharma.patch/xbmc/FileSystem/FileSmb.cpp
|
||||||
|
--- xbmc-10.1-Dharma/xbmc/FileSystem/FileSmb.cpp 2011-09-05 02:24:35.154994777 +0200
|
||||||
|
+++ xbmc-10.1-Dharma.patch/xbmc/FileSystem/FileSmb.cpp 2011-09-05 02:22:55.604582159 +0200
|
||||||
|
@@ -122,6 +122,8 @@
|
||||||
|
// use the weaker LANMAN password hash in order to be compatible with older servers
|
||||||
|
fprintf(f, "\tclient lanman auth = yes\n");
|
||||||
|
fprintf(f, "\tlanman auth = yes\n");
|
||||||
|
+ fprintf(f, "\tsocket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=65536 SO_SNDBUF=65536\n");
|
||||||
|
+ fprintf(f, "\tlock directory = %s/.smb/\n", getenv("HOME"));
|
||||||
|
|
||||||
|
// set wins server if there's one. name resolve order defaults to 'lmhosts host wins bcast'.
|
||||||
|
// if no WINS server has been specified the wins method will be ignored.
|
@ -22,11 +22,19 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
wait_for_network
|
wait_for_network
|
||||||
|
|
||||||
progress "Starting Avahi Daemon"
|
progress "Starting Avahi Daemon"
|
||||||
|
|
||||||
mkdir -p /var/run/avahi-daemon
|
mkdir -p /var/run/avahi-daemon
|
||||||
avahi-daemon -D
|
avahi-daemon -D
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Starting Avahi Daemon"
|
||||||
|
killall avahi-daemon
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
if [ -f /var/config/settings.conf ]; then
|
if [ -f /var/config/settings.conf ]; then
|
||||||
. /var/config/settings.conf
|
. /var/config/settings.conf
|
||||||
|
|
||||||
@ -194,3 +196,8 @@ fi
|
|||||||
usleep 250000
|
usleep 250000
|
||||||
done
|
done
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -22,9 +22,16 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
wait_for_network
|
wait_for_network
|
||||||
|
|
||||||
progress "mounting Network shares"
|
progress "mounting Network shares"
|
||||||
netmount > /dev/null 2>&1
|
netmount > /dev/null 2>&1
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -26,7 +26,7 @@ export LD="$TARGET_CC"
|
|||||||
export LDFLAGS="$TARGET_CFLAGS $TARGET_LDFLAGS"
|
export LDFLAGS="$TARGET_CFLAGS $TARGET_LDFLAGS"
|
||||||
|
|
||||||
cd $PKG_BUILD
|
cd $PKG_BUILD
|
||||||
ac_cv_have_space_for_dirent_d_name=yes \
|
#ac_cv_have_space_for_dirent_d_name=yes \
|
||||||
./configure --host=$TARGET_NAME \
|
./configure --host=$TARGET_NAME \
|
||||||
--build=$HOST_NAME \
|
--build=$HOST_NAME \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
(
|
|
||||||
RSA1_KEY="/storage/.cache/ssh/ssh_host_key"
|
RSA1_KEY="/storage/.cache/ssh/ssh_host_key"
|
||||||
RSA2_KEY="/storage/.cache/ssh/ssh_host_rsa_key"
|
RSA2_KEY="/storage/.cache/ssh/ssh_host_rsa_key"
|
||||||
DSA2_KEY="/storage/.cache/ssh/ssh_host_dsa_key"
|
DSA2_KEY="/storage/.cache/ssh/ssh_host_dsa_key"
|
||||||
@ -30,6 +29,9 @@
|
|||||||
KEYGEN="/usr/bin/ssh-keygen"
|
KEYGEN="/usr/bin/ssh-keygen"
|
||||||
SSHD="/usr/sbin/sshd"
|
SSHD="/usr/sbin/sshd"
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
|
(
|
||||||
# Check for the SSH1 RSA key
|
# Check for the SSH1 RSA key
|
||||||
if [ ! -f $RSA1_KEY ] ; then
|
if [ ! -f $RSA1_KEY ] ; then
|
||||||
progress "SSH: generating SSH1 RSA key"
|
progress "SSH: generating SSH1 RSA key"
|
||||||
@ -72,5 +74,11 @@
|
|||||||
mkdir -p /var/empty
|
mkdir -p /var/empty
|
||||||
chmod -R 600 /var/empty
|
chmod -R 600 /var/empty
|
||||||
$SSHD
|
$SSHD
|
||||||
|
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping SSH Server"
|
||||||
|
killall sshd
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="openssh"
|
PKG_NAME="openssh"
|
||||||
PKG_VERSION="5.8p2"
|
PKG_VERSION="5.9p1"
|
||||||
PKG_REV="1"
|
PKG_REV="1"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="OSS"
|
PKG_LICENSE="OSS"
|
||||||
|
@ -1,53 +0,0 @@
|
|||||||
diff -Naur openssh-5.8p1-old/configure.ac openssh-5.8p1-new/configure.ac
|
|
||||||
--- openssh-5.8p1-old/configure.ac 2011-02-21 17:41:23.000000000 -0800
|
|
||||||
+++ openssh-5.8p1-new/configure.ac 2011-02-21 17:42:20.000000000 -0800
|
|
||||||
@@ -41,7 +41,7 @@
|
|
||||||
AC_PROG_RANLIB
|
|
||||||
AC_PROG_INSTALL
|
|
||||||
AC_PROG_EGREP
|
|
||||||
-AC_PATH_PROG(AR, ar)
|
|
||||||
+AC_PATH_TOOL(AR, ar)
|
|
||||||
AC_PATH_PROG(CAT, cat)
|
|
||||||
AC_PATH_PROG(KILL, kill)
|
|
||||||
AC_PATH_PROGS(PERL, perl5 perl)
|
|
||||||
@@ -1188,25 +1188,25 @@
|
|
||||||
|
|
||||||
AC_CHECK_DECLS(GLOB_NOMATCH, , , [#include <glob.h>])
|
|
||||||
|
|
||||||
-AC_MSG_CHECKING([whether struct dirent allocates space for d_name])
|
|
||||||
-AC_RUN_IFELSE(
|
|
||||||
- [AC_LANG_SOURCE([[
|
|
||||||
+AC_CACHE_CHECK(
|
|
||||||
+ [whether struct dirent allocates space for d_name],
|
|
||||||
+ [ac_cv_have_space_for_dirent_d_name],
|
|
||||||
+ [AC_RUN_IFELSE(
|
|
||||||
+ [AC_LANG_SOURCE([[
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <dirent.h>
|
|
||||||
int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
|
|
||||||
- ]])],
|
|
||||||
- [AC_MSG_RESULT(yes)],
|
|
||||||
- [
|
|
||||||
- AC_MSG_RESULT(no)
|
|
||||||
- AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
|
|
||||||
- [Define if your struct dirent expects you to
|
|
||||||
- allocate extra space for d_name])
|
|
||||||
- ],
|
|
||||||
- [
|
|
||||||
- AC_MSG_WARN([cross compiling: assuming BROKEN_ONE_BYTE_DIRENT_D_NAME])
|
|
||||||
- AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME)
|
|
||||||
- ]
|
|
||||||
+ ]])],
|
|
||||||
+ [ ac_cv_have_space_for_dirent_d_name="yes" ],
|
|
||||||
+ [ ac_cv_have_space_for_dirent_d_name="no" ],
|
|
||||||
+ [ ac_cv_have_space_for_dirent_d_name="no" ]
|
|
||||||
+ )]
|
|
||||||
)
|
|
||||||
+if test "x$ac_cv_have_space_for_dirent_d_name" = "xno" ; then
|
|
||||||
+ AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
|
|
||||||
+ [Define if your struct dirent expects you to
|
|
||||||
+ allocate extra space for d_name])
|
|
||||||
+fi
|
|
||||||
|
|
||||||
AC_MSG_CHECKING([for /proc/pid/fd directory])
|
|
||||||
if test -d "/proc/$$/fd" ; then
|
|
@ -1,49 +0,0 @@
|
|||||||
diff -Naur openssh-5.8p1-old/channels.c openssh-5.8p1-new/channels.c
|
|
||||||
--- openssh-5.8p1-old/channels.c 2010-11-30 17:02:35.000000000 -0800
|
|
||||||
+++ openssh-5.8p1-new/channels.c 2011-02-21 17:41:34.000000000 -0800
|
|
||||||
@@ -61,6 +61,7 @@
|
|
||||||
#include <termios.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <stdarg.h>
|
|
||||||
+#include <stddef.h>
|
|
||||||
|
|
||||||
#include "openbsd-compat/sys-queue.h"
|
|
||||||
#include "xmalloc.h"
|
|
||||||
@@ -3353,6 +3354,8 @@
|
|
||||||
{
|
|
||||||
int sock;
|
|
||||||
struct sockaddr_un addr;
|
|
||||||
+ int abstract = 0;
|
|
||||||
+ int addrsize = 0;
|
|
||||||
|
|
||||||
sock = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
||||||
if (sock < 0)
|
|
||||||
@@ -3360,8 +3363,15 @@
|
|
||||||
memset(&addr, 0, sizeof(addr));
|
|
||||||
addr.sun_family = AF_UNIX;
|
|
||||||
strlcpy(addr.sun_path, pathname, sizeof addr.sun_path);
|
|
||||||
- if (connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == 0)
|
|
||||||
+ addrsize = offsetof(struct sockaddr_un, sun_path) + strlen(addr.sun_path);
|
|
||||||
+ if (addr.sun_path[0] = '@')
|
|
||||||
+ abstract = 1;
|
|
||||||
+ if (abstract)
|
|
||||||
+ addr.sun_path[0] = '\0';
|
|
||||||
+ if (connect(sock, (struct sockaddr *)&addr, addrsize) == 0)
|
|
||||||
return sock;
|
|
||||||
+ if (abstract)
|
|
||||||
+ addr.sun_path[0] = '@';
|
|
||||||
close(sock);
|
|
||||||
error("connect %.100s: %.100s", addr.sun_path, strerror(errno));
|
|
||||||
return -1;
|
|
||||||
diff -Naur openssh-5.8p1-old/defines.h openssh-5.8p1-new/defines.h
|
|
||||||
--- openssh-5.8p1-old/defines.h 2011-01-17 02:15:31.000000000 -0800
|
|
||||||
+++ openssh-5.8p1-new/defines.h 2011-02-21 17:41:34.000000000 -0800
|
|
||||||
@@ -411,7 +411,7 @@
|
|
||||||
# ifdef __hpux
|
|
||||||
# define X_UNIX_PATH "/var/spool/sockets/X11/%u"
|
|
||||||
# else
|
|
||||||
-# define X_UNIX_PATH "/tmp/.X11-unix/X%u"
|
|
||||||
+# define X_UNIX_PATH "@/tmp/.X11-unix/X%u"
|
|
||||||
# endif
|
|
||||||
#endif /* X_UNIX_PATH */
|
|
||||||
#define _PATH_UNIX_X X_UNIX_PATH
|
|
@ -22,6 +22,11 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
SMB_USERCONF="/storage/.config/samba.conf"
|
||||||
|
SMB_DEFCONF="/etc/samba/smb.conf"
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
if [ -f /var/config/settings.conf ]; then
|
if [ -f /var/config/settings.conf ]; then
|
||||||
. /var/config/settings.conf
|
. /var/config/settings.conf
|
||||||
@ -32,9 +37,6 @@
|
|||||||
|
|
||||||
progress "Starting Samba server"
|
progress "Starting Samba server"
|
||||||
|
|
||||||
SMB_USERCONF="/storage/.config/samba.conf"
|
|
||||||
SMB_DEFCONF="/etc/samba/smb.conf"
|
|
||||||
|
|
||||||
if [ -f $SMB_USERCONF ]; then
|
if [ -f $SMB_USERCONF ]; then
|
||||||
SMB_ARG="--configfile=$SMB_USERCONF"
|
SMB_ARG="--configfile=$SMB_USERCONF"
|
||||||
else
|
else
|
||||||
@ -47,3 +49,11 @@
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping Samba server"
|
||||||
|
killall nmbd
|
||||||
|
killall smbd
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -22,8 +22,14 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "starting ConsoleKit daemon"
|
progress "starting ConsoleKit daemon"
|
||||||
|
|
||||||
install -m 755 -d /var/log/ConsoleKit
|
install -m 755 -d /var/log/ConsoleKit
|
||||||
install -m 755 -d /var/run/ConsoleKit
|
install -m 755 -d /var/run/ConsoleKit
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -20,4 +20,20 @@
|
|||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
|
. /etc/profile
|
||||||
|
|
||||||
|
progress "Reboot the syste"
|
||||||
|
RET=0
|
||||||
|
|
||||||
|
RUNLEVEL="reboot"
|
||||||
|
|
||||||
|
for script in `ls -r1 /etc/init.d/*`; do
|
||||||
|
if grep -q -e "^# runlevels:.*$MODE" $script; then
|
||||||
|
. $script
|
||||||
|
S_RET=$?
|
||||||
|
test $S_RET -ge $RET && RET=$S_RET
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
sync
|
||||||
reboot
|
reboot
|
||||||
|
@ -20,4 +20,20 @@
|
|||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
poweroff
|
. /etc/profile
|
||||||
|
|
||||||
|
progress "Poweroff the system"
|
||||||
|
RET=0
|
||||||
|
|
||||||
|
RUNLEVEL="poweroff"
|
||||||
|
|
||||||
|
for script in `ls -r1 /etc/init.d/*`; do
|
||||||
|
if grep -q -e "^# runlevels:.*$MODE" $script; then
|
||||||
|
. $script
|
||||||
|
S_RET=$?
|
||||||
|
test $S_RET -ge $RET && RET=$S_RET
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
sync
|
||||||
|
poweroff -f
|
||||||
|
@ -23,5 +23,31 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "mounting needed filesystems"
|
progress "mounting needed filesystems"
|
||||||
|
mount -n -t devtmpfs none /dev
|
||||||
|
mkdir -p /dev/pts
|
||||||
|
mount -n -t devpts -o gid=5,mode=620 none /dev/pts
|
||||||
|
mkdir -p /dev/shm
|
||||||
|
mount -n -t tmpfs none /dev/shm
|
||||||
|
mount -n -t tmpfs none /run
|
||||||
mount -n -t ramfs none /var
|
mount -n -t ramfs none /var
|
||||||
|
mount "$disk" /storage -o rw,noatime > /dev/null 2>&1
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "unmounting filesystems"
|
||||||
|
for i in 1 2 3 4 5 6 7 8 9 10; do
|
||||||
|
echo "umount /storage"
|
||||||
|
ERR_ENV=1
|
||||||
|
umount /storage
|
||||||
|
[ "$?" -eq "0" ] && ERR_ENV=0 && break
|
||||||
|
usleep 1000000
|
||||||
|
done
|
||||||
|
if [ "$ERR_ENV" -ne "0" ]; then
|
||||||
|
mount -o remount,ro /storage
|
||||||
|
umount -l /storage
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "make variable directory structure"
|
progress "make variable directory structure"
|
||||||
mkdir -p /var/cache \
|
mkdir -p /var/cache \
|
||||||
/var/lock \
|
/var/lock \
|
||||||
@ -58,3 +60,10 @@ progress "make variable directory structure"
|
|||||||
|
|
||||||
mkdir -p /var/lib/udisks
|
mkdir -p /var/lib/udisks
|
||||||
mkdir -p /var/lib/upower
|
mkdir -p /var/lib/upower
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,7 +25,8 @@
|
|||||||
TTY="3"
|
TTY="3"
|
||||||
|
|
||||||
if [ "$DEBUG" = "yes" ]; then
|
if [ "$DEBUG" = "yes" ]; then
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
echo "###########################################"
|
echo "###########################################"
|
||||||
echo "## it seems we are running in Debug mode ##"
|
echo "## it seems we are running in Debug mode ##"
|
||||||
echo "## starting debugging shell on console $TTY ##"
|
echo "## starting debugging shell on console $TTY ##"
|
||||||
@ -33,5 +34,9 @@ if [ "$DEBUG" = "yes" ]; then
|
|||||||
echo "###########################################"
|
echo "###########################################"
|
||||||
|
|
||||||
openvt -w -c $TTY /bin/sh &
|
openvt -w -c $TTY /bin/sh &
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
@ -25,9 +25,16 @@
|
|||||||
|
|
||||||
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
if [ -f "$OPENELEC_SETTINGS" ]; then
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
progress "creating system settings"
|
progress "creating system settings"
|
||||||
|
|
||||||
mkdir -p /var/config
|
mkdir -p /var/config
|
||||||
cat "$OPENELEC_SETTINGS" | awk -F\" '{print $2"=\""$4"\""}' | sed '/^=/d' > /var/config/settings.conf
|
cat "$OPENELEC_SETTINGS" | awk -F\" '{print $2"=\""$4"\""}' | sed '/^=/d' > /var/config/settings.conf
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
if [ -d /usr/config ]; then
|
if [ -d /usr/config ]; then
|
||||||
progress "copy userconfig and samples"
|
progress "copy userconfig and samples"
|
||||||
|
|
||||||
@ -43,3 +45,8 @@ if [ -d /usr/config ]; then
|
|||||||
cp $sample /storage/.config/$sample
|
cp $sample /storage/.config/$sample
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "Starting Syslog daemon"
|
progress "Starting Syslog daemon"
|
||||||
syslogd
|
syslogd
|
||||||
@ -30,3 +32,13 @@
|
|||||||
progress "Starting Kernellog daemon"
|
progress "Starting Kernellog daemon"
|
||||||
klogd
|
klogd
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping Kernellog daemon"
|
||||||
|
killall klogd
|
||||||
|
|
||||||
|
progress "Stopping Syslog daemon"
|
||||||
|
killall syslogd
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,5 +23,12 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "Setup some CDROM settings"
|
progress "Setup some CDROM settings"
|
||||||
sysctl -w dev.cdrom.lock=0 > /dev/null 2>&1 &
|
sysctl -w dev.cdrom.lock=0 > /dev/null 2>&1 &
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
|
|
||||||
TTY="1"
|
TTY="1"
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
echo "###########################################"
|
echo "###########################################"
|
||||||
echo "## it seems we are running in Text mode. ##"
|
echo "## it seems we are running in Text mode. ##"
|
||||||
echo "## .... starting shell on console $TTY .... ##"
|
echo "## .... starting shell on console $TTY .... ##"
|
||||||
@ -33,3 +35,8 @@ echo "###########################################"
|
|||||||
while true; do
|
while true; do
|
||||||
openvt -w -c $TTY /bin/sh
|
openvt -w -c $TTY /bin/sh
|
||||||
done
|
done
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -19,13 +19,13 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="busybox"
|
PKG_NAME="busybox"
|
||||||
PKG_VERSION="1.19.1"
|
PKG_VERSION="1.19.2"
|
||||||
PKG_REV="1"
|
PKG_REV="1"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://www.busybox.net"
|
PKG_SITE="http://www.busybox.net"
|
||||||
PKG_URL="http://busybox.net/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
PKG_URL="http://busybox.net/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
PKG_DEPENDS="grep hdparm speedcontrol pastebinit"
|
PKG_DEPENDS="kexec-tools grep hdparm speedcontrol pastebinit"
|
||||||
PKG_BUILD_DEPENDS="toolchain busybox-hosttools"
|
PKG_BUILD_DEPENDS="toolchain busybox-hosttools"
|
||||||
PKG_PRIORITY="required"
|
PKG_PRIORITY="required"
|
||||||
PKG_SECTION="system"
|
PKG_SECTION="system"
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
diff -Naur busybox-1.19.1/libbb/match_fstype.c busybox-1.19.1.patch/libbb/match_fstype.c
|
|
||||||
--- busybox-1.19.1/libbb/match_fstype.c 2011-08-28 12:59:56.000000000 +0200
|
|
||||||
+++ busybox-1.19.1.patch/libbb/match_fstype.c 2011-09-03 02:10:51.480283260 +0200
|
|
||||||
@@ -10,10 +10,10 @@
|
|
||||||
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
-#ifdef HAVE_MNTENT_H
|
|
||||||
-
|
|
||||||
#include "libbb.h"
|
|
||||||
|
|
||||||
+#ifdef HAVE_MNTENT_H
|
|
||||||
+
|
|
||||||
int FAST_FUNC match_fstype(const struct mntent *mt, const char *t_fstype)
|
|
||||||
{
|
|
||||||
int match = 1;
|
|
@ -1,31 +0,0 @@
|
|||||||
--- busybox-1.19.1/editors/patch.c
|
|
||||||
+++ busybox-1.19.1-patch/editors/patch.c
|
|
||||||
@@ -70,8 +70,7 @@ struct double_list {
|
|
||||||
|
|
||||||
// Free all the elements of a linked list
|
|
||||||
// Call freeit() on each element before freeing it.
|
|
||||||
-static
|
|
||||||
-void dlist_free(struct double_list *list, void (*freeit)(void *data))
|
|
||||||
+static void dlist_free(struct double_list *list, void (*freeit)(void *data))
|
|
||||||
{
|
|
||||||
while (list) {
|
|
||||||
void *pop = list;
|
|
||||||
@@ -83,8 +82,7 @@ void dlist_free(struct double_list *list
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add an entry before "list" element in (circular) doubly linked list
|
|
||||||
-static
|
|
||||||
-struct double_list *dlist_add(struct double_list **list, char *data)
|
|
||||||
+static struct double_list *dlist_add(struct double_list **list, char *data)
|
|
||||||
{
|
|
||||||
struct double_list *llist;
|
|
||||||
struct double_list *line = xmalloc(sizeof(*line));
|
|
||||||
@@ -232,7 +230,7 @@ static int apply_one_hunk(void)
|
|
||||||
else matcheof = 0;
|
|
||||||
if (PATCH_DEBUG) fdprintf(2, "HUNK:%s\n", plist->data);
|
|
||||||
}
|
|
||||||
- matcheof = matcheof < TT.context;
|
|
||||||
+ matcheof = !matcheof || matcheof < TT.context;
|
|
||||||
|
|
||||||
if (PATCH_DEBUG) fdprintf(2,"MATCHEOF=%c\n", matcheof ? 'Y' : 'N');
|
|
||||||
|
|
@ -25,9 +25,4 @@
|
|||||||
|
|
||||||
PATH="/bin:/sbin:/usr/bin:/usr/sbin"
|
PATH="/bin:/sbin:/usr/bin:/usr/sbin"
|
||||||
|
|
||||||
# hack: add addons to $PATH
|
|
||||||
for i in `find /storage/.xbmc/addons/* -name bin -type d`; do
|
|
||||||
PATH="$PATH:$i"
|
|
||||||
done
|
|
||||||
|
|
||||||
export PATH
|
export PATH
|
||||||
|
@ -24,14 +24,14 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# getting runlevel
|
# getting runlevel
|
||||||
RUNLEVEL="openelec"
|
MODE="openelec"
|
||||||
|
|
||||||
if test "$TEXTMODE" = yes; then
|
if test "$TEXTMODE" = yes; then
|
||||||
RUNLEVEL="textmode"
|
MODE="textmode"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$INSTALLER" = yes; then
|
if test "$INSTALLER" = yes; then
|
||||||
RUNLEVEL="installer"
|
MODE="installer"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export RUNLEVEL
|
export MODE
|
||||||
|
@ -26,16 +26,6 @@
|
|||||||
|
|
||||||
echo 0 > /sys/devices/virtual/graphics/fbcon/cursor_blink
|
echo 0 > /sys/devices/virtual/graphics/fbcon/cursor_blink
|
||||||
|
|
||||||
mount -n -t devtmpfs none /dev
|
|
||||||
|
|
||||||
mkdir -p /dev/pts
|
|
||||||
mount -n -t devpts -o gid=5,mode=620 none /dev/pts
|
|
||||||
|
|
||||||
mkdir -p /dev/shm
|
|
||||||
mount -n -t tmpfs none /dev/shm
|
|
||||||
|
|
||||||
mount -n -t tmpfs none /run
|
|
||||||
|
|
||||||
# showing version
|
# showing version
|
||||||
lsb_release
|
lsb_release
|
||||||
|
|
||||||
@ -46,8 +36,10 @@
|
|||||||
progress "Starting Init Scripts"
|
progress "Starting Init Scripts"
|
||||||
RET=0
|
RET=0
|
||||||
|
|
||||||
for script in /etc/init.d/*; do
|
RUNLEVEL="boot"
|
||||||
if grep -q -e "^# runlevels:.*$RUNLEVEL" $script; then
|
|
||||||
|
for script in `ls -1 /etc/init.d/*`; do
|
||||||
|
if grep -q -e "^# runlevels:.*$MODE" $script; then
|
||||||
. $script
|
. $script
|
||||||
S_RET=$?
|
S_RET=$?
|
||||||
test $S_RET -ge $RET && RET=$S_RET
|
test $S_RET -ge $RET && RET=$S_RET
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "Starting D-BUS"
|
progress "Starting D-BUS"
|
||||||
|
|
||||||
@ -30,3 +32,10 @@
|
|||||||
dbus-uuidgen --ensure
|
dbus-uuidgen --ensure
|
||||||
dbus-daemon --system
|
dbus-daemon --system
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping D-BUS"
|
||||||
|
killall dbus-daemon
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,5 +23,14 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "Starting Fuse"
|
progress "Starting Fuse"
|
||||||
mount -t fusectl fusectl /sys/fs/fuse/connections >/dev/null 2>&1
|
mount -t fusectl fusectl /sys/fs/fuse/connections >/dev/null 2>&1
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping Fuse"
|
||||||
|
umount /sys/fs/fuse/connections
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
41
packages/sysutils/kexec-tools/build
Executable file
41
packages/sysutils/kexec-tools/build
Executable file
@ -0,0 +1,41 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# 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
|
||||||
|
# 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, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
CFLAGS="-O2" # -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2"
|
||||||
|
LDFLAGS=""
|
||||||
|
|
||||||
|
cd $PKG_BUILD
|
||||||
|
./configure --host=$TARGET_NAME \
|
||||||
|
--build=$HOST_NAME \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--libexecdir=/usr/lib/upower \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--without-gamecube \
|
||||||
|
--with-zlib \
|
||||||
|
--without-lzma \
|
||||||
|
--without-xen \
|
||||||
|
|
||||||
|
make
|
26
packages/sysutils/kexec-tools/install
Executable file
26
packages/sysutils/kexec-tools/install
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# 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
|
||||||
|
# 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, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
mkdir -p $INSTALL/usr/sbin
|
||||||
|
cp $PKG_BUILD/build/sbin/kexec $INSTALL/usr/sbin
|
36
packages/sysutils/kexec-tools/meta
Normal file
36
packages/sysutils/kexec-tools/meta
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
################################################################################
|
||||||
|
# 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
|
||||||
|
# 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, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
PKG_NAME="kexec-tools"
|
||||||
|
PKG_VERSION="2.0.2"
|
||||||
|
PKG_REV="1"
|
||||||
|
PKG_ARCH="any"
|
||||||
|
PKG_LICENSE="GPL"
|
||||||
|
PKG_SITE="http://www.kernel.org/pub/linux/kernel/people/horms/"
|
||||||
|
PKG_URL="http://horms.net/projects/kexec/kexec-tools/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
|
PKG_DEPENDS="zlib"
|
||||||
|
PKG_BUILD_DEPENDS="toolchain zlib"
|
||||||
|
PKG_PRIORITY="optional"
|
||||||
|
PKG_SECTION="system"
|
||||||
|
PKG_SHORTDESC="kexec-tools: the user-space portion of kexec"
|
||||||
|
PKG_LONGDESC="kexec-tools is the user-space portion of kexec, a tool to load another kernel from the currently executing Linux kernel."
|
||||||
|
PKG_IS_ADDON="no"
|
||||||
|
|
||||||
|
PKG_AUTORECONF="yes"
|
@ -22,6 +22,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
if [ -f /var/config/settings.conf ]; then
|
if [ -f /var/config/settings.conf ]; then
|
||||||
. /var/config/settings.conf
|
. /var/config/settings.conf
|
||||||
@ -47,3 +49,10 @@
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping LCD daemon"
|
||||||
|
killall LCDd
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -22,8 +22,17 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "starting ATVclient"
|
progress "starting ATVclient"
|
||||||
mkdir -p /storage/.cache
|
mkdir -p /storage/.cache
|
||||||
atvclient -m > /dev/null 2>&1
|
atvclient -m > /dev/null 2>&1
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "stopping ATVclient"
|
||||||
|
killall atvclient
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -22,8 +22,17 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "starting eventlircd"
|
progress "starting eventlircd"
|
||||||
mkdir -p /var/run/lirc
|
mkdir -p /var/run/lirc
|
||||||
eventlircd --evmap=/etc/eventlircd.d --socket=/var/run/lirc/lircd --release=_UP
|
eventlircd --evmap=/etc/eventlircd.d --socket=/var/run/lirc/lircd --release=_UP
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "starting eventlircd"
|
||||||
|
killall eventlircd
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -25,6 +25,8 @@
|
|||||||
[ -f /storage/.config/remote.conf ] && . /storage/.config/remote.conf
|
[ -f /storage/.config/remote.conf ] && . /storage/.config/remote.conf
|
||||||
[ -f /storage/.config/lcd.conf ] && . /storage/.config/lcd.conf
|
[ -f /storage/.config/lcd.conf ] && . /storage/.config/lcd.conf
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
if [ "$REMOTE_BACKEND" = "irtrans" -o "$LCD_DRIVER" = "irtrans" ]; then
|
if [ "$REMOTE_BACKEND" = "irtrans" -o "$LCD_DRIVER" = "irtrans" ]; then
|
||||||
|
|
||||||
progress "Starting IRtrans daemon"
|
progress "Starting IRtrans daemon"
|
||||||
@ -38,3 +40,10 @@ if [ "$REMOTE_BACKEND" = "irtrans" -o "$LCD_DRIVER" = "irtrans" ]; then
|
|||||||
$IRSERVER_ARG -daemon /dev/irtrans0 > /dev/null 2>&1
|
$IRSERVER_ARG -daemon /dev/irtrans0 > /dev/null 2>&1
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping IRtrans daemon"
|
||||||
|
killall irserver
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,7 +23,16 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "starting udev daemon"
|
progress "starting udev daemon"
|
||||||
echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
|
echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
|
||||||
mkdir -p /dev/rules.d
|
mkdir -p /dev/rules.d
|
||||||
udevd --daemon
|
udevd --daemon
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "stopping udev daemon"
|
||||||
|
killall udevd
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,7 +23,14 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
(
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
progress "monitoring udev events"
|
progress "monitoring udev events"
|
||||||
udevadm monitor -e > /dev/udev.log
|
udevadm monitor -e > /dev/udev.log &
|
||||||
)&
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "Stopping udev monitor"
|
||||||
|
killall udevadm
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,8 +23,15 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, installer, textmode
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "request udev events from the kernel"
|
progress "request udev events from the kernel"
|
||||||
udevadm trigger --action=add
|
udevadm trigger --action=add
|
||||||
udevadm settle
|
udevadm settle
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
INSTALLED_MEMORY=`cat /proc/meminfo | grep 'MemTotal:' | awk '{print $2}'`
|
INSTALLED_MEMORY=`cat /proc/meminfo | grep 'MemTotal:' | awk '{print $2}'`
|
||||||
SWAP=`blkid -t TYPE="swap" -o device`
|
SWAP=`blkid -t TYPE="swap" -o device`
|
||||||
@ -49,3 +51,8 @@
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -43,7 +43,7 @@ fi
|
|||||||
download () {
|
download () {
|
||||||
case "$DL_METHOD" in
|
case "$DL_METHOD" in
|
||||||
wget)
|
wget)
|
||||||
wget -c $1 -P $TMP_DIR
|
wget -c $1 -P $TMP_DIR > /dev/null 2>&1
|
||||||
;;
|
;;
|
||||||
scp)
|
scp)
|
||||||
scp $SCP_ARG "$1" $TMP_DIR
|
scp $SCP_ARG "$1" $TMP_DIR
|
||||||
|
@ -43,7 +43,7 @@ fi
|
|||||||
download () {
|
download () {
|
||||||
case "$DL_METHOD" in
|
case "$DL_METHOD" in
|
||||||
wget)
|
wget)
|
||||||
wget -c $1 -P $TMP_DIR
|
wget -c $1 -P $TMP_DIR > /dev/null 2>&1
|
||||||
;;
|
;;
|
||||||
scp)
|
scp)
|
||||||
scp $SCP_ARG "$1" $TMP_DIR
|
scp $SCP_ARG "$1" $TMP_DIR
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec
|
# runlevels: openelec
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
if [ -f /var/config/settings.conf ]; then
|
if [ -f /var/config/settings.conf ]; then
|
||||||
. /var/config/settings.conf
|
. /var/config/settings.conf
|
||||||
@ -43,3 +45,8 @@
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
@ -34,7 +34,7 @@ cd $PKG_BUILD
|
|||||||
--enable-dri \
|
--enable-dri \
|
||||||
--enable-kms-only \
|
--enable-kms-only \
|
||||||
--disable-xvmc \
|
--disable-xvmc \
|
||||||
--enable-sna \
|
--disable-sna \
|
||||||
--with-xorg-module-dir=$XORG_PATH_MODULES
|
--with-xorg-module-dir=$XORG_PATH_MODULES
|
||||||
|
|
||||||
make
|
make
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec
|
# runlevels: openelec
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
(
|
(
|
||||||
progress "starting Windowmanager"
|
progress "starting Windowmanager"
|
||||||
|
|
||||||
@ -31,3 +33,8 @@
|
|||||||
# starting ratpoison
|
# starting ratpoison
|
||||||
DISPLAY=:0.0 ratpoison > /dev/null 2>&1
|
DISPLAY=:0.0 ratpoison > /dev/null 2>&1
|
||||||
)&
|
)&
|
||||||
|
;;
|
||||||
|
|
||||||
|
poweroff|reboot)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
34
packages/x11/xserver/xorg-server/init.d/70_xorg
Normal file
34
packages/x11/xserver/xorg-server/init.d/70_xorg
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
################################################################################
|
||||||
|
# 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
|
||||||
|
# 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, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
#
|
||||||
|
# mounting needed filesystems
|
||||||
|
#
|
||||||
|
# runlevels: openelec, installer, textmode
|
||||||
|
|
||||||
|
case $RUNLEVEL in
|
||||||
|
boot)
|
||||||
|
# dont do anything here, we start xorg per udev
|
||||||
|
;;
|
||||||
|
poweroff|reboot)
|
||||||
|
progress "stopping Xorg"
|
||||||
|
killall Xorg
|
||||||
|
;;
|
||||||
|
esac
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
. /etc/profile
|
. /etc/profile
|
||||||
|
|
||||||
if [ "$RUNLEVEL" = openelec ]; then
|
if [ "$MODE" = openelec ]; then
|
||||||
|
|
||||||
logger -t Xorg "### starting Xorg with driver ${xorg_driver} ###"
|
logger -t Xorg "### starting Xorg with driver ${xorg_driver} ###"
|
||||||
|
|
||||||
|
@ -181,7 +181,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -363,11 +362,6 @@ CONFIG_X86_CPUID=y
|
|||||||
CONFIG_NOHIGHMEM=y
|
CONFIG_NOHIGHMEM=y
|
||||||
# CONFIG_HIGHMEM4G is not set
|
# CONFIG_HIGHMEM4G is not set
|
||||||
# CONFIG_HIGHMEM64G is not set
|
# CONFIG_HIGHMEM64G is not set
|
||||||
# CONFIG_VMSPLIT_3G is not set
|
|
||||||
# CONFIG_VMSPLIT_3G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_2G is not set
|
|
||||||
# CONFIG_VMSPLIT_2G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_1G is not set
|
|
||||||
CONFIG_PAGE_OFFSET=0xC0000000
|
CONFIG_PAGE_OFFSET=0xC0000000
|
||||||
# CONFIG_X86_PAE is not set
|
# CONFIG_X86_PAE is not set
|
||||||
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
||||||
@ -417,7 +411,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
CONFIG_PHYSICAL_ALIGN=0x1000000
|
CONFIG_PHYSICAL_ALIGN=0x1000000
|
||||||
@ -465,7 +459,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
|
@ -405,7 +405,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -2128,7 +2128,7 @@ CONFIG_SND_HDA_CODEC_REALTEK=y
|
|||||||
CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y
|
CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y
|
||||||
# CONFIG_SND_HDA_CODEC_ANALOG is not set
|
# CONFIG_SND_HDA_CODEC_ANALOG is not set
|
||||||
CONFIG_SND_HDA_CODEC_SIGMATEL=y
|
CONFIG_SND_HDA_CODEC_SIGMATEL=y
|
||||||
# CONFIG_SND_HDA_CODEC_VIA is not set
|
CONFIG_SND_HDA_CODEC_VIA=y
|
||||||
CONFIG_SND_HDA_CODEC_HDMI=y
|
CONFIG_SND_HDA_CODEC_HDMI=y
|
||||||
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
|
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
|
||||||
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
|
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
|
||||||
|
@ -183,7 +183,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -360,11 +359,6 @@ CONFIG_X86_CPUID=y
|
|||||||
# CONFIG_NOHIGHMEM is not set
|
# CONFIG_NOHIGHMEM is not set
|
||||||
CONFIG_HIGHMEM4G=y
|
CONFIG_HIGHMEM4G=y
|
||||||
# CONFIG_HIGHMEM64G is not set
|
# CONFIG_HIGHMEM64G is not set
|
||||||
# CONFIG_VMSPLIT_3G is not set
|
|
||||||
# CONFIG_VMSPLIT_3G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_2G is not set
|
|
||||||
# CONFIG_VMSPLIT_2G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_1G is not set
|
|
||||||
CONFIG_PAGE_OFFSET=0xC0000000
|
CONFIG_PAGE_OFFSET=0xC0000000
|
||||||
CONFIG_HIGHMEM=y
|
CONFIG_HIGHMEM=y
|
||||||
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
||||||
@ -413,7 +407,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -470,7 +464,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
@ -1177,11 +1170,13 @@ CONFIG_HOSTAP_FIRMWARE=y
|
|||||||
CONFIG_HOSTAP_PLX=m
|
CONFIG_HOSTAP_PLX=m
|
||||||
CONFIG_HOSTAP_PCI=m
|
CONFIG_HOSTAP_PCI=m
|
||||||
CONFIG_IPW2100=m
|
CONFIG_IPW2100=m
|
||||||
# CONFIG_IPW2100_MONITOR is not set
|
CONFIG_IPW2100_MONITOR=y
|
||||||
# CONFIG_IPW2100_DEBUG is not set
|
# CONFIG_IPW2100_DEBUG is not set
|
||||||
CONFIG_IPW2200=m
|
CONFIG_IPW2200=m
|
||||||
# CONFIG_IPW2200_MONITOR is not set
|
CONFIG_IPW2200_MONITOR=y
|
||||||
# CONFIG_IPW2200_QOS is not set
|
CONFIG_IPW2200_RADIOTAP=y
|
||||||
|
CONFIG_IPW2200_PROMISCUOUS=y
|
||||||
|
CONFIG_IPW2200_QOS=y
|
||||||
# CONFIG_IPW2200_DEBUG is not set
|
# CONFIG_IPW2200_DEBUG is not set
|
||||||
CONFIG_LIBIPW=m
|
CONFIG_LIBIPW=m
|
||||||
# CONFIG_LIBIPW_DEBUG is not set
|
# CONFIG_LIBIPW_DEBUG is not set
|
||||||
@ -2272,6 +2267,7 @@ CONFIG_SND_DMA_SGBUF=y
|
|||||||
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
# CONFIG_SND_SBAWE_SEQ is not set
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
# CONFIG_SND_EMU10K1_SEQ is not set
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
|
CONFIG_SND_MPU401_UART=m
|
||||||
CONFIG_SND_AC97_CODEC=m
|
CONFIG_SND_AC97_CODEC=m
|
||||||
# CONFIG_SND_DRIVERS is not set
|
# CONFIG_SND_DRIVERS is not set
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
@ -2290,7 +2286,8 @@ CONFIG_SND_PCI=y
|
|||||||
# CONFIG_SND_BT87X is not set
|
# CONFIG_SND_BT87X is not set
|
||||||
# CONFIG_SND_CA0106 is not set
|
# CONFIG_SND_CA0106 is not set
|
||||||
# CONFIG_SND_CMIPCI is not set
|
# CONFIG_SND_CMIPCI is not set
|
||||||
# CONFIG_SND_OXYGEN is not set
|
CONFIG_SND_OXYGEN_LIB=m
|
||||||
|
CONFIG_SND_OXYGEN=m
|
||||||
# CONFIG_SND_CS4281 is not set
|
# CONFIG_SND_CS4281 is not set
|
||||||
# CONFIG_SND_CS46XX is not set
|
# CONFIG_SND_CS46XX is not set
|
||||||
# CONFIG_SND_CS5530 is not set
|
# CONFIG_SND_CS5530 is not set
|
||||||
|
@ -183,7 +183,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -360,11 +359,6 @@ CONFIG_X86_CPUID=y
|
|||||||
# CONFIG_NOHIGHMEM is not set
|
# CONFIG_NOHIGHMEM is not set
|
||||||
CONFIG_HIGHMEM4G=y
|
CONFIG_HIGHMEM4G=y
|
||||||
# CONFIG_HIGHMEM64G is not set
|
# CONFIG_HIGHMEM64G is not set
|
||||||
# CONFIG_VMSPLIT_3G is not set
|
|
||||||
# CONFIG_VMSPLIT_3G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_2G is not set
|
|
||||||
# CONFIG_VMSPLIT_2G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_1G is not set
|
|
||||||
CONFIG_PAGE_OFFSET=0xC0000000
|
CONFIG_PAGE_OFFSET=0xC0000000
|
||||||
CONFIG_HIGHMEM=y
|
CONFIG_HIGHMEM=y
|
||||||
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
||||||
@ -413,7 +407,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -470,7 +464,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
@ -1174,11 +1167,13 @@ CONFIG_HOSTAP_FIRMWARE=y
|
|||||||
CONFIG_HOSTAP_PLX=m
|
CONFIG_HOSTAP_PLX=m
|
||||||
CONFIG_HOSTAP_PCI=m
|
CONFIG_HOSTAP_PCI=m
|
||||||
CONFIG_IPW2100=m
|
CONFIG_IPW2100=m
|
||||||
# CONFIG_IPW2100_MONITOR is not set
|
CONFIG_IPW2100_MONITOR=y
|
||||||
# CONFIG_IPW2100_DEBUG is not set
|
# CONFIG_IPW2100_DEBUG is not set
|
||||||
CONFIG_IPW2200=m
|
CONFIG_IPW2200=m
|
||||||
# CONFIG_IPW2200_MONITOR is not set
|
CONFIG_IPW2200_MONITOR=y
|
||||||
# CONFIG_IPW2200_QOS is not set
|
CONFIG_IPW2200_RADIOTAP=y
|
||||||
|
CONFIG_IPW2200_PROMISCUOUS=y
|
||||||
|
CONFIG_IPW2200_QOS=y
|
||||||
# CONFIG_IPW2200_DEBUG is not set
|
# CONFIG_IPW2200_DEBUG is not set
|
||||||
CONFIG_LIBIPW=m
|
CONFIG_LIBIPW=m
|
||||||
# CONFIG_LIBIPW_DEBUG is not set
|
# CONFIG_LIBIPW_DEBUG is not set
|
||||||
@ -2270,6 +2265,7 @@ CONFIG_SND_DMA_SGBUF=y
|
|||||||
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
# CONFIG_SND_SBAWE_SEQ is not set
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
# CONFIG_SND_EMU10K1_SEQ is not set
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
|
CONFIG_SND_MPU401_UART=m
|
||||||
CONFIG_SND_AC97_CODEC=m
|
CONFIG_SND_AC97_CODEC=m
|
||||||
# CONFIG_SND_DRIVERS is not set
|
# CONFIG_SND_DRIVERS is not set
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
@ -2288,7 +2284,8 @@ CONFIG_SND_PCI=y
|
|||||||
# CONFIG_SND_BT87X is not set
|
# CONFIG_SND_BT87X is not set
|
||||||
# CONFIG_SND_CA0106 is not set
|
# CONFIG_SND_CA0106 is not set
|
||||||
# CONFIG_SND_CMIPCI is not set
|
# CONFIG_SND_CMIPCI is not set
|
||||||
# CONFIG_SND_OXYGEN is not set
|
CONFIG_SND_OXYGEN_LIB=m
|
||||||
|
CONFIG_SND_OXYGEN=m
|
||||||
# CONFIG_SND_CS4281 is not set
|
# CONFIG_SND_CS4281 is not set
|
||||||
# CONFIG_SND_CS46XX is not set
|
# CONFIG_SND_CS46XX is not set
|
||||||
# CONFIG_SND_CS5530 is not set
|
# CONFIG_SND_CS5530 is not set
|
||||||
|
@ -183,7 +183,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -355,11 +354,6 @@ CONFIG_X86_CPUID=y
|
|||||||
# CONFIG_NOHIGHMEM is not set
|
# CONFIG_NOHIGHMEM is not set
|
||||||
CONFIG_HIGHMEM4G=y
|
CONFIG_HIGHMEM4G=y
|
||||||
# CONFIG_HIGHMEM64G is not set
|
# CONFIG_HIGHMEM64G is not set
|
||||||
# CONFIG_VMSPLIT_3G is not set
|
|
||||||
# CONFIG_VMSPLIT_3G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_2G is not set
|
|
||||||
# CONFIG_VMSPLIT_2G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_1G is not set
|
|
||||||
CONFIG_PAGE_OFFSET=0xC0000000
|
CONFIG_PAGE_OFFSET=0xC0000000
|
||||||
CONFIG_HIGHMEM=y
|
CONFIG_HIGHMEM=y
|
||||||
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
||||||
@ -408,7 +402,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -464,7 +458,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
@ -2129,6 +2122,7 @@ CONFIG_SND_DMA_SGBUF=y
|
|||||||
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
# CONFIG_SND_SBAWE_SEQ is not set
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
# CONFIG_SND_EMU10K1_SEQ is not set
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
|
CONFIG_SND_MPU401_UART=m
|
||||||
# CONFIG_SND_DRIVERS is not set
|
# CONFIG_SND_DRIVERS is not set
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
# CONFIG_SND_AD1889 is not set
|
# CONFIG_SND_AD1889 is not set
|
||||||
@ -2146,7 +2140,8 @@ CONFIG_SND_PCI=y
|
|||||||
# CONFIG_SND_BT87X is not set
|
# CONFIG_SND_BT87X is not set
|
||||||
# CONFIG_SND_CA0106 is not set
|
# CONFIG_SND_CA0106 is not set
|
||||||
# CONFIG_SND_CMIPCI is not set
|
# CONFIG_SND_CMIPCI is not set
|
||||||
# CONFIG_SND_OXYGEN is not set
|
CONFIG_SND_OXYGEN_LIB=m
|
||||||
|
CONFIG_SND_OXYGEN=m
|
||||||
# CONFIG_SND_CS4281 is not set
|
# CONFIG_SND_CS4281 is not set
|
||||||
# CONFIG_SND_CS46XX is not set
|
# CONFIG_SND_CS46XX is not set
|
||||||
# CONFIG_SND_CS5530 is not set
|
# CONFIG_SND_CS5530 is not set
|
||||||
|
@ -184,7 +184,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -373,7 +372,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -427,7 +426,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
@ -2067,6 +2065,7 @@ CONFIG_SND_DMA_SGBUF=y
|
|||||||
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
# CONFIG_SND_SBAWE_SEQ is not set
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
# CONFIG_SND_EMU10K1_SEQ is not set
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
|
CONFIG_SND_MPU401_UART=m
|
||||||
# CONFIG_SND_DRIVERS is not set
|
# CONFIG_SND_DRIVERS is not set
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
# CONFIG_SND_AD1889 is not set
|
# CONFIG_SND_AD1889 is not set
|
||||||
@ -2084,7 +2083,8 @@ CONFIG_SND_PCI=y
|
|||||||
# CONFIG_SND_BT87X is not set
|
# CONFIG_SND_BT87X is not set
|
||||||
# CONFIG_SND_CA0106 is not set
|
# CONFIG_SND_CA0106 is not set
|
||||||
# CONFIG_SND_CMIPCI is not set
|
# CONFIG_SND_CMIPCI is not set
|
||||||
# CONFIG_SND_OXYGEN is not set
|
CONFIG_SND_OXYGEN_LIB=m
|
||||||
|
CONFIG_SND_OXYGEN=m
|
||||||
# CONFIG_SND_CS4281 is not set
|
# CONFIG_SND_CS4281 is not set
|
||||||
# CONFIG_SND_CS46XX is not set
|
# CONFIG_SND_CS46XX is not set
|
||||||
# CONFIG_SND_CS5530 is not set
|
# CONFIG_SND_CS5530 is not set
|
||||||
|
@ -183,7 +183,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -356,11 +355,6 @@ CONFIG_X86_CPUID=y
|
|||||||
# CONFIG_NOHIGHMEM is not set
|
# CONFIG_NOHIGHMEM is not set
|
||||||
CONFIG_HIGHMEM4G=y
|
CONFIG_HIGHMEM4G=y
|
||||||
# CONFIG_HIGHMEM64G is not set
|
# CONFIG_HIGHMEM64G is not set
|
||||||
# CONFIG_VMSPLIT_3G is not set
|
|
||||||
# CONFIG_VMSPLIT_3G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_2G is not set
|
|
||||||
# CONFIG_VMSPLIT_2G_OPT is not set
|
|
||||||
# CONFIG_VMSPLIT_1G is not set
|
|
||||||
CONFIG_PAGE_OFFSET=0xC0000000
|
CONFIG_PAGE_OFFSET=0xC0000000
|
||||||
CONFIG_HIGHMEM=y
|
CONFIG_HIGHMEM=y
|
||||||
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
|
||||||
@ -409,7 +403,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -466,7 +460,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
@ -1135,8 +1128,17 @@ CONFIG_HOSTAP=m
|
|||||||
# CONFIG_HOSTAP_FIRMWARE is not set
|
# CONFIG_HOSTAP_FIRMWARE is not set
|
||||||
# CONFIG_HOSTAP_PLX is not set
|
# CONFIG_HOSTAP_PLX is not set
|
||||||
# CONFIG_HOSTAP_PCI is not set
|
# CONFIG_HOSTAP_PCI is not set
|
||||||
# CONFIG_IPW2100 is not set
|
CONFIG_IPW2100=m
|
||||||
# CONFIG_IPW2200 is not set
|
CONFIG_IPW2100_MONITOR=y
|
||||||
|
# CONFIG_IPW2100_DEBUG is not set
|
||||||
|
CONFIG_IPW2200=m
|
||||||
|
CONFIG_IPW2200_MONITOR=y
|
||||||
|
CONFIG_IPW2200_RADIOTAP=y
|
||||||
|
CONFIG_IPW2200_PROMISCUOUS=y
|
||||||
|
CONFIG_IPW2200_QOS=y
|
||||||
|
# CONFIG_IPW2200_DEBUG is not set
|
||||||
|
CONFIG_LIBIPW=m
|
||||||
|
# CONFIG_LIBIPW_DEBUG is not set
|
||||||
CONFIG_IWLAGN=m
|
CONFIG_IWLAGN=m
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -2179,6 +2181,7 @@ CONFIG_SND_DMA_SGBUF=y
|
|||||||
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
# CONFIG_SND_SBAWE_SEQ is not set
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
# CONFIG_SND_EMU10K1_SEQ is not set
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
|
CONFIG_SND_MPU401_UART=m
|
||||||
# CONFIG_SND_DRIVERS is not set
|
# CONFIG_SND_DRIVERS is not set
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
# CONFIG_SND_AD1889 is not set
|
# CONFIG_SND_AD1889 is not set
|
||||||
@ -2196,7 +2199,8 @@ CONFIG_SND_PCI=y
|
|||||||
# CONFIG_SND_BT87X is not set
|
# CONFIG_SND_BT87X is not set
|
||||||
# CONFIG_SND_CA0106 is not set
|
# CONFIG_SND_CA0106 is not set
|
||||||
# CONFIG_SND_CMIPCI is not set
|
# CONFIG_SND_CMIPCI is not set
|
||||||
# CONFIG_SND_OXYGEN is not set
|
CONFIG_SND_OXYGEN_LIB=m
|
||||||
|
CONFIG_SND_OXYGEN=m
|
||||||
# CONFIG_SND_CS4281 is not set
|
# CONFIG_SND_CS4281 is not set
|
||||||
# CONFIG_SND_CS46XX is not set
|
# CONFIG_SND_CS46XX is not set
|
||||||
# CONFIG_SND_CS5530 is not set
|
# CONFIG_SND_CS5530 is not set
|
||||||
@ -2234,15 +2238,15 @@ CONFIG_SND_HDA_PATCH_LOADER=y
|
|||||||
CONFIG_SND_HDA_CODEC_REALTEK=y
|
CONFIG_SND_HDA_CODEC_REALTEK=y
|
||||||
CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y
|
CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y
|
||||||
CONFIG_SND_HDA_CODEC_ANALOG=y
|
CONFIG_SND_HDA_CODEC_ANALOG=y
|
||||||
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
|
CONFIG_SND_HDA_CODEC_SIGMATEL=y
|
||||||
CONFIG_SND_HDA_CODEC_VIA=y
|
CONFIG_SND_HDA_CODEC_VIA=y
|
||||||
CONFIG_SND_HDA_CODEC_HDMI=y
|
CONFIG_SND_HDA_CODEC_HDMI=y
|
||||||
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
|
CONFIG_SND_HDA_CODEC_CIRRUS=y
|
||||||
CONFIG_SND_HDA_CODEC_CONEXANT=y
|
CONFIG_SND_HDA_CODEC_CONEXANT=y
|
||||||
# CONFIG_SND_HDA_CODEC_CA0110 is not set
|
CONFIG_SND_HDA_CODEC_CA0110=y
|
||||||
CONFIG_SND_HDA_CODEC_CA0132=y
|
CONFIG_SND_HDA_CODEC_CA0132=y
|
||||||
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
|
CONFIG_SND_HDA_CODEC_CMEDIA=y
|
||||||
# CONFIG_SND_HDA_CODEC_SI3054 is not set
|
CONFIG_SND_HDA_CODEC_SI3054=y
|
||||||
CONFIG_SND_HDA_GENERIC=y
|
CONFIG_SND_HDA_GENERIC=y
|
||||||
# CONFIG_SND_HDA_POWER_SAVE is not set
|
# CONFIG_SND_HDA_POWER_SAVE is not set
|
||||||
# CONFIG_SND_HDSP is not set
|
# CONFIG_SND_HDSP is not set
|
||||||
|
@ -184,7 +184,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -375,7 +374,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -430,7 +429,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
@ -1087,8 +1085,17 @@ CONFIG_HOSTAP=m
|
|||||||
# CONFIG_HOSTAP_FIRMWARE is not set
|
# CONFIG_HOSTAP_FIRMWARE is not set
|
||||||
# CONFIG_HOSTAP_PLX is not set
|
# CONFIG_HOSTAP_PLX is not set
|
||||||
# CONFIG_HOSTAP_PCI is not set
|
# CONFIG_HOSTAP_PCI is not set
|
||||||
# CONFIG_IPW2100 is not set
|
CONFIG_IPW2100=m
|
||||||
# CONFIG_IPW2200 is not set
|
CONFIG_IPW2100_MONITOR=y
|
||||||
|
# CONFIG_IPW2100_DEBUG is not set
|
||||||
|
CONFIG_IPW2200=m
|
||||||
|
CONFIG_IPW2200_MONITOR=y
|
||||||
|
CONFIG_IPW2200_RADIOTAP=y
|
||||||
|
CONFIG_IPW2200_PROMISCUOUS=y
|
||||||
|
CONFIG_IPW2200_QOS=y
|
||||||
|
# CONFIG_IPW2200_DEBUG is not set
|
||||||
|
CONFIG_LIBIPW=m
|
||||||
|
# CONFIG_LIBIPW_DEBUG is not set
|
||||||
CONFIG_IWLAGN=m
|
CONFIG_IWLAGN=m
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -2122,6 +2129,7 @@ CONFIG_SND_DMA_SGBUF=y
|
|||||||
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
# CONFIG_SND_SBAWE_SEQ is not set
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
# CONFIG_SND_EMU10K1_SEQ is not set
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
|
CONFIG_SND_MPU401_UART=m
|
||||||
# CONFIG_SND_DRIVERS is not set
|
# CONFIG_SND_DRIVERS is not set
|
||||||
CONFIG_SND_PCI=y
|
CONFIG_SND_PCI=y
|
||||||
# CONFIG_SND_AD1889 is not set
|
# CONFIG_SND_AD1889 is not set
|
||||||
@ -2139,7 +2147,8 @@ CONFIG_SND_PCI=y
|
|||||||
# CONFIG_SND_BT87X is not set
|
# CONFIG_SND_BT87X is not set
|
||||||
# CONFIG_SND_CA0106 is not set
|
# CONFIG_SND_CA0106 is not set
|
||||||
# CONFIG_SND_CMIPCI is not set
|
# CONFIG_SND_CMIPCI is not set
|
||||||
# CONFIG_SND_OXYGEN is not set
|
CONFIG_SND_OXYGEN_LIB=m
|
||||||
|
CONFIG_SND_OXYGEN=m
|
||||||
# CONFIG_SND_CS4281 is not set
|
# CONFIG_SND_CS4281 is not set
|
||||||
# CONFIG_SND_CS46XX is not set
|
# CONFIG_SND_CS46XX is not set
|
||||||
# CONFIG_SND_CS5530 is not set
|
# CONFIG_SND_CS5530 is not set
|
||||||
@ -2177,15 +2186,15 @@ CONFIG_SND_HDA_PATCH_LOADER=y
|
|||||||
CONFIG_SND_HDA_CODEC_REALTEK=y
|
CONFIG_SND_HDA_CODEC_REALTEK=y
|
||||||
CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y
|
CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y
|
||||||
CONFIG_SND_HDA_CODEC_ANALOG=y
|
CONFIG_SND_HDA_CODEC_ANALOG=y
|
||||||
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
|
CONFIG_SND_HDA_CODEC_SIGMATEL=y
|
||||||
CONFIG_SND_HDA_CODEC_VIA=y
|
CONFIG_SND_HDA_CODEC_VIA=y
|
||||||
CONFIG_SND_HDA_CODEC_HDMI=y
|
CONFIG_SND_HDA_CODEC_HDMI=y
|
||||||
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
|
CONFIG_SND_HDA_CODEC_CIRRUS=y
|
||||||
CONFIG_SND_HDA_CODEC_CONEXANT=y
|
CONFIG_SND_HDA_CODEC_CONEXANT=y
|
||||||
# CONFIG_SND_HDA_CODEC_CA0110 is not set
|
CONFIG_SND_HDA_CODEC_CA0110=y
|
||||||
CONFIG_SND_HDA_CODEC_CA0132=y
|
CONFIG_SND_HDA_CODEC_CA0132=y
|
||||||
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
|
CONFIG_SND_HDA_CODEC_CMEDIA=y
|
||||||
# CONFIG_SND_HDA_CODEC_SI3054 is not set
|
CONFIG_SND_HDA_CODEC_SI3054=y
|
||||||
CONFIG_SND_HDA_GENERIC=y
|
CONFIG_SND_HDA_GENERIC=y
|
||||||
# CONFIG_SND_HDA_POWER_SAVE is not set
|
# CONFIG_SND_HDA_POWER_SAVE is not set
|
||||||
# CONFIG_SND_HDSP is not set
|
# CONFIG_SND_HDSP is not set
|
||||||
|
@ -184,7 +184,6 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_COMPAT_BRK is not set
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
# CONFIG_KPROBES is not set
|
# CONFIG_KPROBES is not set
|
||||||
@ -373,7 +372,7 @@ CONFIG_HZ_300=y
|
|||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=300
|
CONFIG_HZ=300
|
||||||
CONFIG_SCHED_HRTICK=y
|
CONFIG_SCHED_HRTICK=y
|
||||||
# CONFIG_KEXEC is not set
|
CONFIG_KEXEC=y
|
||||||
# CONFIG_CRASH_DUMP is not set
|
# CONFIG_CRASH_DUMP is not set
|
||||||
CONFIG_PHYSICAL_START=0x1000000
|
CONFIG_PHYSICAL_START=0x1000000
|
||||||
# CONFIG_RELOCATABLE is not set
|
# CONFIG_RELOCATABLE is not set
|
||||||
@ -427,7 +426,6 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
# 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_USERSPACE is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user