From 0c58ed66c32fc85a8aa88ede7773223cb7d97fcd Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 23 Mar 2010 05:17:02 +0100 Subject: [PATCH 01/43] xbmc: - update to xbmc-28745 --- packages/mediacenter/xbmc/build | 2 + ...d_host_and_build_to_configures-0.3.1.diff} | 85 +++++++++++++++---- .../091-xbmc-enable_yasm_in_ffmpeg-0.1.diff | 22 ++--- packages/mediacenter/xbmc/url | 2 +- 4 files changed, 81 insertions(+), 30 deletions(-) rename packages/mediacenter/xbmc/patches/{010_xbmc-crosscompile_add_host_and_build_to_configures-0.2.1.diff => 010_xbmc-crosscompile_add_host_and_build_to_configures-0.3.1.diff} (62%) diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index b1cde99c34..00673e71bc 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -91,6 +91,8 @@ cd - ./bootstrap ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ + --with-arch=$TARGET_ARCH \ + --with-cpu=$TARGET_CPU \ --prefix=/usr \ --exec-prefix=/usr \ --sysconfdir=/etc \ diff --git a/packages/mediacenter/xbmc/patches/010_xbmc-crosscompile_add_host_and_build_to_configures-0.2.1.diff b/packages/mediacenter/xbmc/patches/010_xbmc-crosscompile_add_host_and_build_to_configures-0.3.1.diff similarity index 62% rename from packages/mediacenter/xbmc/patches/010_xbmc-crosscompile_add_host_and_build_to_configures-0.2.1.diff rename to packages/mediacenter/xbmc/patches/010_xbmc-crosscompile_add_host_and_build_to_configures-0.3.1.diff index 033babe263..24e5fb71f2 100644 --- a/packages/mediacenter/xbmc/patches/010_xbmc-crosscompile_add_host_and_build_to_configures-0.2.1.diff +++ b/packages/mediacenter/xbmc/patches/010_xbmc-crosscompile_add_host_and_build_to_configures-0.3.1.diff @@ -1,7 +1,53 @@ -diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in ---- xbmc-28584/configure.in 2010-03-14 21:06:24.000000000 +0100 -+++ xbmc-28584.patch/configure.in 2010-03-15 00:50:53.680149619 +0100 -@@ -1154,7 +1154,9 @@ +diff -Naur xbmc-28745/configure.in xbmc-28745.patch/configure.in +--- xbmc-28745/configure.in 2010-03-22 06:50:58.000000000 +0100 ++++ xbmc-28745.patch/configure.in 2010-03-22 13:17:49.917999744 +0100 +@@ -24,6 +24,10 @@ + + AC_CANONICAL_HOST + ++tolower(){ ++ echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz ++} ++ + # General message strings + configure_debug="ERROR: this is a configure debug statement" + missing_library="Could not find a required library. Please see the README for your platform." +@@ -102,6 +106,18 @@ + [use_debug=$enableval], + [use_debug=yes]) + ++AC_ARG_WITH([arch], ++ [AS_HELP_STRING([--with-arch], ++ [build with given arch passing to internal ffmpeg (default is no, needed for crosscompiling)])], ++ [use_arch=$withval], ++ [use_arch=no]) ++ ++AC_ARG_WITH([cpu], ++ [AS_HELP_STRING([--with-cpu], ++ [build with given cpu passing to ffmpeg (default is no)])], ++ [use_cpu=$withval], ++ [use_cpu=no]) ++ + AC_ARG_ENABLE([optimizations], + [AS_HELP_STRING([--enable-optimizations], + [enable optimization (default is yes)])], +@@ -805,6 +821,15 @@ + fi + fi + ++if test "$cross_compiling" = "yes"; then ++ final_message="$final_message\n Crosscomp.:\tYes" ++else ++ final_message="$final_message\n Crosscomp.:\tNo" ++fi ++ ++final_message="$final_message\n target ARCH:\t$use_arch" ++final_message="$final_message\n target CPU:\t$use_cpu" ++ + if test "$use_optimizations" = "yes"; then + final_message="$final_message\n Optimization:\tYes" + CXXFLAGS="$CXXFLAGS -O2" +@@ -1154,7 +1179,9 @@ cp pyconfig.h Include else ./configure \ @@ -12,15 +58,18 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --enable-unicode=ucs4 \ --without-cxx \ --enable-shared \ -@@ -1219,6 +1221,7 @@ +@@ -1217,6 +1244,10 @@ + ./configure \ --disable-static \ - --disable-ipv6 \ `if test "$use_debug" = "no"; then echo --disable-debug; fi` \ + `if test "$cross_compiling" = "yes"; then echo --enable-cross-compile; fi` \ ++ `if test "$use_arch" != "no"; then echo --arch=$use_arch; fi`\ ++ `if test "$use_cpu" != "no"; then echo --cpu=$use_cpu; fi`\ ++ --target-os=$(tolower $(uname -s)) \ --disable-muxers \ --enable-muxer=spdif \ --enable-muxer=adts \ -@@ -1235,6 +1238,7 @@ +@@ -1233,6 +1264,7 @@ --enable-postproc \ --enable-gpl \ `if test "$use_vdpau" = "yes"; then echo --enable-vdpau; else echo --disable-vdpau; fi` \ @@ -28,7 +77,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --enable-libfaad \ --enable-protocol=http \ --enable-pthreads \ -@@ -1254,6 +1258,8 @@ +@@ -1252,6 +1284,8 @@ --disable-win else ./configure \ @@ -37,7 +86,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --disable-oss \ --disable-solaris-audio \ --disable-al-audio \ -@@ -1271,6 +1277,8 @@ +@@ -1269,6 +1303,8 @@ --with-pic else ./configure \ @@ -46,7 +95,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --disable-doc \ --enable-static \ --with-pic -@@ -1289,6 +1297,8 @@ +@@ -1287,6 +1323,8 @@ cp `pwd`/../libdvdread/src/*.h `pwd`/../includes/dvdread else ./configure2 \ @@ -55,7 +104,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --extra-cflags="$CFLAGS $DVDREAD_CFLAGS -fPIC -DPIC -I`pwd`/../libdvdcss/src" \ --prefix="${prefix}" --includedir="${includedir}" --libdir="${libdir}" --datadir="${datadir}" \ --enable-static \ -@@ -1314,6 +1324,8 @@ +@@ -1312,6 +1350,8 @@ --cc="$CC" else ./configure2 \ @@ -64,7 +113,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --extra-cflags="$DVDREAD_CFLAGS -fPIC -DPIC -I`pwd`/../includes" \ --extra-ldflags="-L`pwd`/../libdvdread/obj" \ --with-dvdread-config="`pwd`/../libdvdread/obj/dvdread-config" \ -@@ -1346,6 +1358,8 @@ +@@ -1344,6 +1384,8 @@ --disable-al-audio else ./configure \ @@ -73,7 +122,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in --with-pic \ --disable-static \ --enable-shared \ -@@ -1381,7 +1395,9 @@ +@@ -1379,7 +1421,9 @@ ./configure MACOSX_DEPLOYMENT_TARGET=10.4 else CFLAGS="$CFLAGS -fPIC" \ @@ -84,7 +133,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in fi ], [$USE_EXTERNAL_LIBASS]) -@@ -1395,6 +1411,8 @@ +@@ -1393,6 +1437,8 @@ --with-pic else ./configure \ @@ -93,7 +142,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in CPPFLAGS="$CPPFLAGS" \ CFLAGS="$CFLAGS -fPIC" \ CXXFLAGS="$CXXFLAGS -fPIC" \ -@@ -1421,6 +1439,8 @@ +@@ -1419,6 +1465,8 @@ XB_CONFIG_MODULE([xbmc/visualizations/Goom/goom2k4-0],[ if test "$host_vendor" != "apple" ; then ./configure \ @@ -102,7 +151,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in CPPFLAGS="$CPPFLAGS" \ CFLAGS="$CFLAGS -fPIC" \ CXXFLAGS="$CXXFLAGS -fPIC" \ -@@ -1451,6 +1471,8 @@ +@@ -1449,6 +1497,8 @@ --disable-skyrocket else ./configure \ @@ -111,7 +160,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in CPPFLAGS="$CPPFLAGS" \ CFLAGS="$CFLAGS -fPIC" \ CXXFLAGS="$CXXFLAGS -fPIC" \ -@@ -1470,9 +1492,11 @@ +@@ -1468,9 +1518,11 @@ XB_CONFIG_MODULE([xbmc/cores/dvdplayer/Codecs/libbdnav/], [ if test "$host_vendor" = "apple" ; then @@ -125,7 +174,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in fi ], [0]) -@@ -1481,7 +1505,9 @@ +@@ -1479,7 +1531,9 @@ CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -fno-common" \ ./configure MACOSX_DEPLOYMENT_TARGET=10.4 --disable-shared else diff --git a/packages/mediacenter/xbmc/patches/091-xbmc-enable_yasm_in_ffmpeg-0.1.diff b/packages/mediacenter/xbmc/patches/091-xbmc-enable_yasm_in_ffmpeg-0.1.diff index 8ad37ff7d2..be58e79acc 100644 --- a/packages/mediacenter/xbmc/patches/091-xbmc-enable_yasm_in_ffmpeg-0.1.diff +++ b/packages/mediacenter/xbmc/patches/091-xbmc-enable_yasm_in_ffmpeg-0.1.diff @@ -1,7 +1,7 @@ -diff -Naur xbmc-23998/configure.in xbmc-23998.patch/configure.in ---- xbmc-23998/configure.in 2009-10-25 13:30:40.869660379 +0100 -+++ xbmc-23998.patch/configure.in 2009-10-25 13:33:30.376657368 +0100 -@@ -692,6 +692,7 @@ +diff -Naur xbmc-28745/configure.in xbmc-28745.patch/configure.in +--- xbmc-28745/configure.in 2010-03-23 04:05:13.476967336 +0100 ++++ xbmc-28745.patch/configure.in 2010-03-23 04:07:49.166967342 +0100 +@@ -728,6 +728,7 @@ fi fi @@ -9,11 +9,11 @@ diff -Naur xbmc-23998/configure.in xbmc-23998.patch/configure.in AC_CHECK_PROG(HAVE_SVNVERSION,svnversion,"yes","no",) AC_CHECK_PROG(HAVE_GIT,git,"yes","no",) -@@ -1177,6 +1178,7 @@ - --disable-ipv6 \ - `if test "$use_debug" = "no"; then echo --disable-debug; fi` \ - `if test "$cross_compiling" = "yes"; then echo --enable-cross-compile; fi` \ +@@ -1269,6 +1270,7 @@ + --enable-protocol=http \ + --enable-pthreads \ + `if test "$host_cpu" = "powerpc" || test "$host_cpu" = "powerpc64"; then echo --enable-pic; fi` \ + `if test "$HAVE_YASM" = "yes"; then echo --enable-yasm; fi` \ - --disable-muxers \ - --disable-encoders \ - --disable-decoder=mpeg_xvmc \ + --cc="$CC" + fi + ], [$USE_EXTERNAL_FFMPEG]) diff --git a/packages/mediacenter/xbmc/url b/packages/mediacenter/xbmc/url index aa8d60462b..bb1f20911b 100644 --- a/packages/mediacenter/xbmc/url +++ b/packages/mediacenter/xbmc/url @@ -1 +1 @@ -http://sources.openelec.tv/svn/xbmc-28690.tar.bz2 +http://sources.openelec.tv/svn/xbmc-28745.tar.bz2 From cdc73e3cae5556fcd52c1f3fad64cd57048fe3c0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 23 Mar 2010 05:17:22 +0100 Subject: [PATCH 02/43] xbmc-theme-Confluence: - update to xbmc-theme-Confluence-28745 --- packages/mediacenter/xbmc-theme-Confluence/url | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mediacenter/xbmc-theme-Confluence/url b/packages/mediacenter/xbmc-theme-Confluence/url index 0066bc213d..11a228eb9f 100644 --- a/packages/mediacenter/xbmc-theme-Confluence/url +++ b/packages/mediacenter/xbmc-theme-Confluence/url @@ -1 +1 @@ -http://sources.openelec.tv/svn/xbmc-theme-Confluence-28690.tar.bz2 +http://sources.openelec.tv/svn/xbmc-theme-Confluence-28745.tar.bz2 From ec5e93d21ed9116909c302d493c101bec189bb55 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 23 Mar 2010 05:17:41 +0100 Subject: [PATCH 03/43] connman: - update to connman-0.50 --- packages/network/connman/build | 2 ++ packages/network/connman/url | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/network/connman/build b/packages/network/connman/build index ad061c360d..be5ecc05ea 100755 --- a/packages/network/connman/build +++ b/packages/network/connman/build @@ -16,6 +16,7 @@ cd $PKG_BUILD --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ + --disable-debug \ --disable-static \ --enable-shared \ --enable-threads \ @@ -48,3 +49,4 @@ cd $PKG_BUILD --disable-capng \ make + diff --git a/packages/network/connman/url b/packages/network/connman/url index eca469eb2f..63738c5d19 100644 --- a/packages/network/connman/url +++ b/packages/network/connman/url @@ -1 +1 @@ -http://www.kernel.org/pub/linux/network/connman/connman-0.48.tar.bz2 +http://www.kernel.org/pub/linux/network/connman/connman-0.50.tar.bz2 From b91d457611c51ca99cb2e6afed22379d625431b9 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 23 Mar 2010 05:18:00 +0100 Subject: [PATCH 04/43] xf86-video-intel: - update to xf86-video-intel-2.10.903 --- packages/x11/driver/xf86-video-intel/url | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/driver/xf86-video-intel/url b/packages/x11/driver/xf86-video-intel/url index 71230b399a..99bc71fafb 100644 --- a/packages/x11/driver/xf86-video-intel/url +++ b/packages/x11/driver/xf86-video-intel/url @@ -1 +1 @@ -http://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-2.10.902.tar.bz2 +http://xorg.freedesktop.org/archive/individual/driver/xf86-video-intel-2.10.903.tar.bz2 \ No newline at end of file From 481c46a9d91d08315efa367d4c59ee20f4653381 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 08:19:36 +0100 Subject: [PATCH 05/43] samba: - depends on avahi --- packages/network/samba/build | 1 + packages/network/samba/install | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/network/samba/build b/packages/network/samba/build index fc6f572717..107e51ea77 100755 --- a/packages/network/samba/build +++ b/packages/network/samba/build @@ -4,6 +4,7 @@ $SCRIPTS/build toolchain $SCRIPTS/build libiconv +$SCRIPTS/build avahi export samba_cv_CC_NEGATIVE_ENUM_VALUES=no diff --git a/packages/network/samba/install b/packages/network/samba/install index d007bc0d43..4802894c37 100755 --- a/packages/network/samba/install +++ b/packages/network/samba/install @@ -3,6 +3,7 @@ . config/options $SCRIPTS/install libiconv +$SCRIPTS/install avahi PKG_DIR=`find $PACKAGES -type d -name $1` From e429c242f7a89b05e8eddfd76816f823a20455e6 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 08:19:55 +0100 Subject: [PATCH 06/43] freetype: - update to freetype-2.3.12 --- packages/print/freetype/url | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/print/freetype/url b/packages/print/freetype/url index 4a5f97f781..91666e4316 100644 --- a/packages/print/freetype/url +++ b/packages/print/freetype/url @@ -1 +1 @@ -http://prdownloads.sourceforge.net/freetype/freetype-2.3.11.tar.bz2 +http://prdownloads.sourceforge.net/freetype/freetype-2.3.12.tar.bz2 From cc6f9646eca202387a6d6dd09964b9fdd572c0c3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:35:05 +0100 Subject: [PATCH 07/43] xbmc: - change runlevel "text" to "textmode" --- packages/mediacenter/xbmc/init.d/09_cache_xbmc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mediacenter/xbmc/init.d/09_cache_xbmc b/packages/mediacenter/xbmc/init.d/09_cache_xbmc index 92869d22a7..38b6217b4c 100755 --- a/packages/mediacenter/xbmc/init.d/09_cache_xbmc +++ b/packages/mediacenter/xbmc/init.d/09_cache_xbmc @@ -1,7 +1,7 @@ # # caching xbmc # -# runlevels: openelec, text +# runlevels: openelec, textmode if [ "$XBMC_CACHING" = "yes" ]; then From 5d815824defda65983444e5a918582216a610930 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:35:18 +0100 Subject: [PATCH 08/43] avahi: - change runlevel "text" to "textmode" --- packages/network/avahi/init.d/24_avahi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/network/avahi/init.d/24_avahi b/packages/network/avahi/init.d/24_avahi index d3833b8fd0..720f62f0f4 100755 --- a/packages/network/avahi/init.d/24_avahi +++ b/packages/network/avahi/init.d/24_avahi @@ -1,6 +1,6 @@ # start Avahi Daemon # -# runlevels: openelec, text +# runlevels: openelec, textmode ( progress "Starting Avahi Daemon" From 89f137373594d5781faa1d0b4c9f580c628521cf Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:35:33 +0100 Subject: [PATCH 09/43] connman: - change runlevel "text" to "textmode" --- packages/network/connman/init.d/40_connman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/network/connman/init.d/40_connman b/packages/network/connman/init.d/40_connman index a4445a458f..f087aff2aa 100755 --- a/packages/network/connman/init.d/40_connman +++ b/packages/network/connman/init.d/40_connman @@ -1,6 +1,6 @@ # start connman network manager # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "Starting Connection Manager" From 397096a95dc906396d697632ce0d5a036ce8e01b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:35:45 +0100 Subject: [PATCH 10/43] dropbear: - change runlevel "text" to "textmode" --- packages/network/dropbear/init.d/41_sshd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/network/dropbear/init.d/41_sshd b/packages/network/dropbear/init.d/41_sshd index a4c06f5499..5f63718fa6 100755 --- a/packages/network/dropbear/init.d/41_sshd +++ b/packages/network/dropbear/init.d/41_sshd @@ -1,6 +1,6 @@ # start ssh server # -# runlevels: openelec, text +# runlevels: openelec, textmode ( # Check for the Dropbear RSA key From 79b0794dfa6d86401159cdf9ada22b8e0bdde50c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:35:57 +0100 Subject: [PATCH 11/43] samba: - change runlevel "text" to "textmode" --- packages/network/samba/init.d/42_samba | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/network/samba/init.d/42_samba b/packages/network/samba/init.d/42_samba index 0ce3b0e941..1623b35822 100755 --- a/packages/network/samba/init.d/42_samba +++ b/packages/network/samba/init.d/42_samba @@ -1,6 +1,6 @@ # start Samba Server # -# runlevels: openelec, text +# runlevels: openelec, textmode ( progress "Starting Samba server" From a9de4496ac83e131f7bba0d7ba72b196f70a9ccf Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:36:39 +0100 Subject: [PATCH 12/43] SABnzbd: - change runlevel "text" to "textmode" - cosmetics - remove runlevel "debug" --- packages/plugins/SABnzbd/init.d/33_SABnzbd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/plugins/SABnzbd/init.d/33_SABnzbd b/packages/plugins/SABnzbd/init.d/33_SABnzbd index 1ae20d0cab..458c62e1d4 100755 --- a/packages/plugins/SABnzbd/init.d/33_SABnzbd +++ b/packages/plugins/SABnzbd/init.d/33_SABnzbd @@ -1,9 +1,9 @@ # Starting SABnzbd Newsgroup downloader daemon # -# runlevels: openelec, text, debug +# runlevels: openelec, textmode ( - progress "Starting SABnzbd Newsgroup downloader daemon" + progress "Starting SABnzbd Newsgroup downloader daemon" - python /usr/share/SABnzbd/SABnzbd.py -d $SABNZBD_ARGS > /dev/null 2>&1 + python /usr/share/SABnzbd/SABnzbd.py -d $SABNZBD_ARGS > /dev/null 2>&1 )& From 5877c793c73d60673349632146372c531b156ed6 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:37:00 +0100 Subject: [PATCH 13/43] ConsoleKit: - change runlevel "text" to "textmode" --- packages/sysutils/ConsoleKit/init.d/25_ConsoleKit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/ConsoleKit/init.d/25_ConsoleKit b/packages/sysutils/ConsoleKit/init.d/25_ConsoleKit index 4db101b8e2..a6f1b8650d 100755 --- a/packages/sysutils/ConsoleKit/init.d/25_ConsoleKit +++ b/packages/sysutils/ConsoleKit/init.d/25_ConsoleKit @@ -1,6 +1,6 @@ # start D-BUS daemon # -# runlevels: openelec, text +# runlevels: openelec, textmode ( progress "Setup ConsoleKit" From 9df8b527f8669c18c0cf579c75412efd31d466ee Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:37:33 +0100 Subject: [PATCH 14/43] busybox: - change runlevel "text" to "textmode" - cosmetics --- packages/sysutils/busybox/init.d/00_debugshell | 3 +-- packages/sysutils/busybox/init.d/05_mount_filesystem | 2 +- packages/sysutils/busybox/init.d/06_make_directorys | 2 +- packages/sysutils/busybox/init.d/07_userconfig | 2 +- packages/sysutils/busybox/init.d/08_network | 2 +- packages/sysutils/busybox/init.d/10_syslogd | 2 +- packages/sysutils/busybox/init.d/23_acpid | 2 +- packages/sysutils/busybox/init.d/99_shell | 3 +-- packages/sysutils/busybox/scripts/init | 2 +- 9 files changed, 9 insertions(+), 11 deletions(-) diff --git a/packages/sysutils/busybox/init.d/00_debugshell b/packages/sysutils/busybox/init.d/00_debugshell index df87f538b4..556c21174c 100755 --- a/packages/sysutils/busybox/init.d/00_debugshell +++ b/packages/sysutils/busybox/init.d/00_debugshell @@ -1,6 +1,6 @@ # start debug shell # -# runlevels: openelec, text +# runlevels: openelec, textmode TTY="3" @@ -12,7 +12,6 @@ if [ "$DEBUG" = "yes" ]; then echo "## ...... switch with ctrl-alt-f$TTY ...... ##" echo "###########################################" -# exec /bin/sh /dev/tty$TTY 2>&1 & exec /sbin/getty -n -l /bin/sh 38400 tty$TTY & fi diff --git a/packages/sysutils/busybox/init.d/05_mount_filesystem b/packages/sysutils/busybox/init.d/05_mount_filesystem index 2d53d275fa..6435ec78ac 100755 --- a/packages/sysutils/busybox/init.d/05_mount_filesystem +++ b/packages/sysutils/busybox/init.d/05_mount_filesystem @@ -1,7 +1,7 @@ # # mounting needed filesystems # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "mounting needed filesystems" diff --git a/packages/sysutils/busybox/init.d/06_make_directorys b/packages/sysutils/busybox/init.d/06_make_directorys index 0a24862cc4..9f19dc2486 100755 --- a/packages/sysutils/busybox/init.d/06_make_directorys +++ b/packages/sysutils/busybox/init.d/06_make_directorys @@ -1,7 +1,7 @@ # # make variable directory structure # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "make variable directory structure" $IONICE mkdir -p /var/log \ diff --git a/packages/sysutils/busybox/init.d/07_userconfig b/packages/sysutils/busybox/init.d/07_userconfig index e11f33fa18..c5ea9e70d4 100755 --- a/packages/sysutils/busybox/init.d/07_userconfig +++ b/packages/sysutils/busybox/init.d/07_userconfig @@ -1,7 +1,7 @@ # # copying config into storage # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "copying config into storage" diff --git a/packages/sysutils/busybox/init.d/08_network b/packages/sysutils/busybox/init.d/08_network index b7fb72b0eb..58e7be486d 100755 --- a/packages/sysutils/busybox/init.d/08_network +++ b/packages/sysutils/busybox/init.d/08_network @@ -1,7 +1,7 @@ # # start syslog daemon # -# runlevels: openelec, text +# runlevels: openelec, textmode HOSTNAME=`cat /etc/hostname` diff --git a/packages/sysutils/busybox/init.d/10_syslogd b/packages/sysutils/busybox/init.d/10_syslogd index ff2b74060c..07438fd050 100755 --- a/packages/sysutils/busybox/init.d/10_syslogd +++ b/packages/sysutils/busybox/init.d/10_syslogd @@ -1,7 +1,7 @@ # # start syslog daemon # -# runlevels: openelec, text +# runlevels: openelec, textmode ( progress "Starting Syslog daemon" diff --git a/packages/sysutils/busybox/init.d/23_acpid b/packages/sysutils/busybox/init.d/23_acpid index bc5fc51180..7583905a4a 100755 --- a/packages/sysutils/busybox/init.d/23_acpid +++ b/packages/sysutils/busybox/init.d/23_acpid @@ -1,6 +1,6 @@ # start the ACPI daemon subsystem # -# runlevels: openelec, text +# runlevels: openelec, textmode ( progress "Starting ACPI daemon" diff --git a/packages/sysutils/busybox/init.d/99_shell b/packages/sysutils/busybox/init.d/99_shell index 6382da0947..96305a951c 100755 --- a/packages/sysutils/busybox/init.d/99_shell +++ b/packages/sysutils/busybox/init.d/99_shell @@ -1,6 +1,6 @@ # start text mode shell # -# runlevels: text +# runlevels: textmode TTY="1" @@ -11,6 +11,5 @@ echo "## ...... switch with ctrl-alt-f$TTY ...... ##" echo "###########################################" while true; do -# exec /bin/sh /dev/tty$TTY 2>&1 exec /sbin/getty -n -l /bin/sh 38400 tty$TTY done diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index 57254d6e8e..6c89e467ee 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -6,7 +6,7 @@ # getting runlevel RUNLEVEL="openelec" if test "$TEXTMODE" = yes; then - RUNLEVEL="text" + RUNLEVEL="textmode" fi # starting init scripts for wanted runlevel From 2c27f01612e4e0c11c919e5b862ebacb14a5a881 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:37:44 +0100 Subject: [PATCH 15/43] dbus: - change runlevel "text" to "textmode" --- packages/sysutils/dbus/init.d/12_dbus | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/dbus/init.d/12_dbus b/packages/sysutils/dbus/init.d/12_dbus index 4c959aaa9a..87a8afe0d3 100755 --- a/packages/sysutils/dbus/init.d/12_dbus +++ b/packages/sysutils/dbus/init.d/12_dbus @@ -1,7 +1,7 @@ # # starting dbus # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "Starting D-BUS" From b0da863d78603e123b0f12a250d510e74a10313c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:37:55 +0100 Subject: [PATCH 16/43] hal: - change runlevel "text" to "textmode" --- packages/sysutils/hal/init.d/13_hal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/hal/init.d/13_hal b/packages/sysutils/hal/init.d/13_hal index 0b8f925a22..2fea190991 100755 --- a/packages/sysutils/hal/init.d/13_hal +++ b/packages/sysutils/hal/init.d/13_hal @@ -1,7 +1,7 @@ # # starting HAL # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "Starting Hardware Abstraction Layer" From d8159bbbe227e1a0ad0086f8ed909c4b9b59b192 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:38:06 +0100 Subject: [PATCH 17/43] lirc: - change runlevel "text" to "textmode" --- packages/sysutils/lirc/init.d/32_lirc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/lirc/init.d/32_lirc b/packages/sysutils/lirc/init.d/32_lirc index 91ebd04ff7..2b4c25f9fb 100755 --- a/packages/sysutils/lirc/init.d/32_lirc +++ b/packages/sysutils/lirc/init.d/32_lirc @@ -1,6 +1,6 @@ # start the LIRC daemon # -# runlevels: openelec, text +# runlevels: openelec, textmode ( progress "Starting LIRC daemon" From 83c00bf14baa9723dbb65f56615b53eee8bc6384 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:38:19 +0100 Subject: [PATCH 18/43] plymouth-lite: - change runlevel "text" to "textmode" --- packages/sysutils/plymouth-lite/init.d/00_plymouth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/plymouth-lite/init.d/00_plymouth b/packages/sysutils/plymouth-lite/init.d/00_plymouth index 3008c940f4..29d0e7e828 100755 --- a/packages/sysutils/plymouth-lite/init.d/00_plymouth +++ b/packages/sysutils/plymouth-lite/init.d/00_plymouth @@ -1,7 +1,7 @@ # # starting splash # -# runlevels: openelec, text +# runlevels: openelec, textmode ( [ "$DEBUG" != "yes" -a "$TEXTMODE" != "yes" \ From 222856494ab8166b8a868e82f2956ae30d0007f1 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 09:38:35 +0100 Subject: [PATCH 19/43] udev: - change runlevel "text" to "textmode" --- packages/sysutils/udev/init.d/01_udevd | 2 +- packages/sysutils/udev/init.d/02_udev-monitor | 2 +- packages/sysutils/udev/init.d/03_udev-trigger | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/sysutils/udev/init.d/01_udevd b/packages/sysutils/udev/init.d/01_udevd index c9cfd479f1..31f59e937f 100755 --- a/packages/sysutils/udev/init.d/01_udevd +++ b/packages/sysutils/udev/init.d/01_udevd @@ -1,7 +1,7 @@ # # starting Udev daemon # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "starting udev daemon" diff --git a/packages/sysutils/udev/init.d/02_udev-monitor b/packages/sysutils/udev/init.d/02_udev-monitor index d08f73e1a1..550b680cd3 100755 --- a/packages/sysutils/udev/init.d/02_udev-monitor +++ b/packages/sysutils/udev/init.d/02_udev-monitor @@ -1,7 +1,7 @@ # # monitoring udev events # -# runlevels: openelec, text +# runlevels: openelec, textmode UDEV_LOGFILE="/dev/.udev.log" diff --git a/packages/sysutils/udev/init.d/03_udev-trigger b/packages/sysutils/udev/init.d/03_udev-trigger index 5334be7550..24621a146a 100755 --- a/packages/sysutils/udev/init.d/03_udev-trigger +++ b/packages/sysutils/udev/init.d/03_udev-trigger @@ -1,7 +1,7 @@ # # request events from the kernel # -# runlevels: openelec, text +# runlevels: openelec, textmode progress "request udev events from the kernel" From 4f2c4be19c1310136ffc4c72334c71588fbc97bb Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:18:27 +0100 Subject: [PATCH 20/43] busybox: - move /etc/sysconfig to /etc/profile --- packages/sysutils/busybox/config/{sysconfig => profile} | 0 packages/sysutils/busybox/install | 3 +-- packages/sysutils/busybox/scripts/init | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) rename packages/sysutils/busybox/config/{sysconfig => profile} (100%) diff --git a/packages/sysutils/busybox/config/sysconfig b/packages/sysutils/busybox/config/profile similarity index 100% rename from packages/sysutils/busybox/config/sysconfig rename to packages/sysutils/busybox/config/profile diff --git a/packages/sysutils/busybox/install b/packages/sysutils/busybox/install index af6a354309..5999cc6866 100755 --- a/packages/sysutils/busybox/install +++ b/packages/sysutils/busybox/install @@ -23,8 +23,7 @@ USER_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw $USER_PASSWORD`" ln -sf /bin/sh $INSTALL/bin/bash mkdir -p $INSTALL/etc - cp $PKG_DIR/config/sysconfig $INSTALL/etc - cp $PKG_DIR/config/sysconfig $INSTALL/etc/profile + cp $PKG_DIR/config/profile $INSTALL/etc touch $INSTALL/etc/fstab ln -sf /var/run/resolv.conf $INSTALL/etc/resolv.conf ln -sf /var/run/hosts $INSTALL/etc/hosts diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index 6c89e467ee..acc61e6114 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -1,7 +1,7 @@ #!/bin/sh # read config - . /etc/sysconfig + . /etc/profile # getting runlevel RUNLEVEL="openelec" From 17e98aae41ba8cce93400a1142bc153d6abf6690 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:18:44 +0100 Subject: [PATCH 21/43] alsa-utils: - move /etc/sysconfig to /etc/profile --- packages/audio/alsa-utils/scripts/soundconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/audio/alsa-utils/scripts/soundconfig b/packages/audio/alsa-utils/scripts/soundconfig index 0179ceb21e..ed523faf2b 100755 --- a/packages/audio/alsa-utils/scripts/soundconfig +++ b/packages/audio/alsa-utils/scripts/soundconfig @@ -9,7 +9,7 @@ mixer() { } ( -. /etc/sysconfig +. /etc/profile progress "Setting up sound card" From dacd5b09a09f06f1e70d9ac9140b4e9e8aa0fee6 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:18:59 +0100 Subject: [PATCH 22/43] xbmc: - move /etc/sysconfig to /etc/profile --- packages/mediacenter/xbmc/scripts/xbmc-session | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mediacenter/xbmc/scripts/xbmc-session b/packages/mediacenter/xbmc/scripts/xbmc-session index dcf8231cf8..9cf7d57ae1 100755 --- a/packages/mediacenter/xbmc/scripts/xbmc-session +++ b/packages/mediacenter/xbmc/scripts/xbmc-session @@ -1,6 +1,6 @@ #!/bin/sh -. /etc/sysconfig +. /etc/profile XBMC_ARGS="--standalone -fs --lircdev $LIRC_OUTPUT" From e75b611b4220cec829f1329f96af4085a6d68c5b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:19:11 +0100 Subject: [PATCH 23/43] mrxvt: - move /etc/sysconfig to /etc/profile --- packages/x11/other/mrxvt/scripts/mrxvt-session | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/other/mrxvt/scripts/mrxvt-session b/packages/x11/other/mrxvt/scripts/mrxvt-session index d8a6026cd1..b61bfba40f 100755 --- a/packages/x11/other/mrxvt/scripts/mrxvt-session +++ b/packages/x11/other/mrxvt/scripts/mrxvt-session @@ -1,6 +1,6 @@ #!/bin/sh -. /etc/sysconfig +. /etc/profile [ $START_WM="yes" ] && $WINDOWMANAGER & From ff0739bf16d71bad3b95a45eb40b787a400764d0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:34:40 +0100 Subject: [PATCH 24/43] xbmc: - move /etc/conf.d/* to /etc/profile.d/* --- packages/mediacenter/xbmc/{conf.d => profile.d}/xbmc | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/mediacenter/xbmc/{conf.d => profile.d}/xbmc (100%) diff --git a/packages/mediacenter/xbmc/conf.d/xbmc b/packages/mediacenter/xbmc/profile.d/xbmc similarity index 100% rename from packages/mediacenter/xbmc/conf.d/xbmc rename to packages/mediacenter/xbmc/profile.d/xbmc From bf1c51ef2d7fcc6993f65c5c2d8e4df058b4947b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:34:58 +0100 Subject: [PATCH 25/43] SABnzbd: - move /etc/conf.d/* to /etc/profile.d/* --- packages/plugins/SABnzbd/{conf.d => profile.d}/SABnzbd | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/plugins/SABnzbd/{conf.d => profile.d}/SABnzbd (100%) diff --git a/packages/plugins/SABnzbd/conf.d/SABnzbd b/packages/plugins/SABnzbd/profile.d/SABnzbd similarity index 100% rename from packages/plugins/SABnzbd/conf.d/SABnzbd rename to packages/plugins/SABnzbd/profile.d/SABnzbd From 912a0e2bc01a8de7d0069872db4ca56a048f08d0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:35:24 +0100 Subject: [PATCH 26/43] busybox: - move /etc/conf.d/* to /etc/profile.d/* --- packages/sysutils/busybox/config/profile | 4 ++-- packages/sysutils/busybox/{conf.d => profile.d}/home | 0 packages/sysutils/busybox/{conf.d => profile.d}/language | 0 packages/sysutils/busybox/{conf.d => profile.d}/path | 0 packages/sysutils/busybox/{conf.d => profile.d}/shell | 0 5 files changed, 2 insertions(+), 2 deletions(-) rename packages/sysutils/busybox/{conf.d => profile.d}/home (100%) rename packages/sysutils/busybox/{conf.d => profile.d}/language (100%) rename packages/sysutils/busybox/{conf.d => profile.d}/path (100%) rename packages/sysutils/busybox/{conf.d => profile.d}/shell (100%) diff --git a/packages/sysutils/busybox/config/profile b/packages/sysutils/busybox/config/profile index a1a76fde7f..395c8918d1 100644 --- a/packages/sysutils/busybox/config/profile +++ b/packages/sysutils/busybox/config/profile @@ -26,6 +26,6 @@ } # read config files - for config in `ls /etc/conf.d/`; do - . /etc/conf.d/$config + for config in `ls /etc/profile.d/`; do + . /etc/profile.d/$config done diff --git a/packages/sysutils/busybox/conf.d/home b/packages/sysutils/busybox/profile.d/home similarity index 100% rename from packages/sysutils/busybox/conf.d/home rename to packages/sysutils/busybox/profile.d/home diff --git a/packages/sysutils/busybox/conf.d/language b/packages/sysutils/busybox/profile.d/language similarity index 100% rename from packages/sysutils/busybox/conf.d/language rename to packages/sysutils/busybox/profile.d/language diff --git a/packages/sysutils/busybox/conf.d/path b/packages/sysutils/busybox/profile.d/path similarity index 100% rename from packages/sysutils/busybox/conf.d/path rename to packages/sysutils/busybox/profile.d/path diff --git a/packages/sysutils/busybox/conf.d/shell b/packages/sysutils/busybox/profile.d/shell similarity index 100% rename from packages/sysutils/busybox/conf.d/shell rename to packages/sysutils/busybox/profile.d/shell From 6012c365b3bb25e356649cf183030562f84d024e Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:35:43 +0100 Subject: [PATCH 27/43] ratpoison: - move /etc/conf.d/* to /etc/profile.d/* --- packages/x11/other/ratpoison/{conf.d => profile.d}/ratpoison | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/x11/other/ratpoison/{conf.d => profile.d}/ratpoison (100%) diff --git a/packages/x11/other/ratpoison/conf.d/ratpoison b/packages/x11/other/ratpoison/profile.d/ratpoison similarity index 100% rename from packages/x11/other/ratpoison/conf.d/ratpoison rename to packages/x11/other/ratpoison/profile.d/ratpoison From 693d121915d626b213ee89f797d1405086569b4a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:36:06 +0100 Subject: [PATCH 28/43] scripts/install: - move /etc/conf.d/* to /etc/profile.d/* --- scripts/install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index b79fe78222..21e61e5982 100755 --- a/scripts/install +++ b/scripts/install @@ -22,9 +22,9 @@ if [ -d $PKG_DIR/init.d ]; then cp $PKG_DIR/init.d/* $INSTALL/etc/init.d/ fi -if [ -d $PKG_DIR/conf.d ]; then - mkdir -p $INSTALL/etc/conf.d - cp $PKG_DIR/conf.d/* $INSTALL/etc/conf.d/ +if [ -d $PKG_DIR/profile.d ]; then + mkdir -p $INSTALL/etc/profile.d + cp $PKG_DIR/profile.d/* $INSTALL/etc/profile.d/ fi $SCRIPTS/build $@ From af89ea5020456829c8850ab29048d7a73c141195 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:37:45 +0100 Subject: [PATCH 29/43] lirc: - move /etc/conf.d/* to /etc/lirc.conf - rename packages/sysutils/lirc/config/sysconfig_$RECEIVER to packages/sysutils/lirc/config/config_$RECEIVER --- .../sysutils/lirc/config/{sysconfig_mceusb => config_mceusb} | 0 packages/sysutils/lirc/init.d/32_lirc | 2 ++ packages/sysutils/lirc/install | 4 +--- 3 files changed, 3 insertions(+), 3 deletions(-) rename packages/sysutils/lirc/config/{sysconfig_mceusb => config_mceusb} (100%) diff --git a/packages/sysutils/lirc/config/sysconfig_mceusb b/packages/sysutils/lirc/config/config_mceusb similarity index 100% rename from packages/sysutils/lirc/config/sysconfig_mceusb rename to packages/sysutils/lirc/config/config_mceusb diff --git a/packages/sysutils/lirc/init.d/32_lirc b/packages/sysutils/lirc/init.d/32_lirc index 2b4c25f9fb..9aa4a83b50 100755 --- a/packages/sysutils/lirc/init.d/32_lirc +++ b/packages/sysutils/lirc/init.d/32_lirc @@ -5,6 +5,8 @@ ( progress "Starting LIRC daemon" + . /etc/lirc.conf + $IONICE mkdir -p /var/run/lirc lircd --driver=$LIRC_DRIVER --device=$LIRC_DEVICE --output=$LIRC_OUTPUT )& diff --git a/packages/sysutils/lirc/install b/packages/sysutils/lirc/install index bb56ffc3b8..caf1b9868a 100755 --- a/packages/sysutils/lirc/install +++ b/packages/sysutils/lirc/install @@ -16,9 +16,7 @@ mkdir -p $INSTALL/usr/bin mkdir -p $INSTALL/etc cp $PKG_DIR/config/lircd_$REMOTE.conf $INSTALL/etc/lircd.conf - -mkdir -p $INSTALL/etc/conf.d - cp $PKG_DIR/config/sysconfig_$RECEIVER $INSTALL/etc/conf.d/lirc + cp $PKG_DIR/config/config_$RECEIVER $INSTALL/etc/lirc.conf mkdir -p $INSTALL/lib/modules/$VER/lirc cp $PKG_BUILD/drivers/*/*.ko $INSTALL/lib/modules/$VER/lirc From ee111bf49d18396b57b4c3c3c17ad804fc165b5b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:50:01 +0100 Subject: [PATCH 30/43] busybox: - rename profile.d/* to profile.d/*.conf --- packages/sysutils/busybox/profile.d/{home => home.conf} | 0 packages/sysutils/busybox/profile.d/{language => language.conf} | 0 packages/sysutils/busybox/profile.d/{path => path.conf} | 0 packages/sysutils/busybox/profile.d/{shell => shell.conf} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename packages/sysutils/busybox/profile.d/{home => home.conf} (100%) rename packages/sysutils/busybox/profile.d/{language => language.conf} (100%) rename packages/sysutils/busybox/profile.d/{path => path.conf} (100%) rename packages/sysutils/busybox/profile.d/{shell => shell.conf} (100%) diff --git a/packages/sysutils/busybox/profile.d/home b/packages/sysutils/busybox/profile.d/home.conf similarity index 100% rename from packages/sysutils/busybox/profile.d/home rename to packages/sysutils/busybox/profile.d/home.conf diff --git a/packages/sysutils/busybox/profile.d/language b/packages/sysutils/busybox/profile.d/language.conf similarity index 100% rename from packages/sysutils/busybox/profile.d/language rename to packages/sysutils/busybox/profile.d/language.conf diff --git a/packages/sysutils/busybox/profile.d/path b/packages/sysutils/busybox/profile.d/path.conf similarity index 100% rename from packages/sysutils/busybox/profile.d/path rename to packages/sysutils/busybox/profile.d/path.conf diff --git a/packages/sysutils/busybox/profile.d/shell b/packages/sysutils/busybox/profile.d/shell.conf similarity index 100% rename from packages/sysutils/busybox/profile.d/shell rename to packages/sysutils/busybox/profile.d/shell.conf From d4daeb522846e4dc75cd4171b260f575cc44a056 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:50:12 +0100 Subject: [PATCH 31/43] xbmc: - rename profile.d/* to profile.d/*.conf --- packages/mediacenter/xbmc/profile.d/{xbmc => xbmc.conf} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/mediacenter/xbmc/profile.d/{xbmc => xbmc.conf} (100%) diff --git a/packages/mediacenter/xbmc/profile.d/xbmc b/packages/mediacenter/xbmc/profile.d/xbmc.conf similarity index 100% rename from packages/mediacenter/xbmc/profile.d/xbmc rename to packages/mediacenter/xbmc/profile.d/xbmc.conf From 6ada28248ae30f3a69ceba0ec2581a8d1e0bd47b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:50:25 +0100 Subject: [PATCH 32/43] SABnzbd: - rename profile.d/* to profile.d/*.conf --- packages/plugins/SABnzbd/profile.d/{SABnzbd => SABnzbd.conf} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/plugins/SABnzbd/profile.d/{SABnzbd => SABnzbd.conf} (100%) diff --git a/packages/plugins/SABnzbd/profile.d/SABnzbd b/packages/plugins/SABnzbd/profile.d/SABnzbd.conf similarity index 100% rename from packages/plugins/SABnzbd/profile.d/SABnzbd rename to packages/plugins/SABnzbd/profile.d/SABnzbd.conf From 0e9f620e54d44ce65a6909a3df9848939eea1d29 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:50:39 +0100 Subject: [PATCH 33/43] ratpoison: - rename profile.d/* to profile.d/*.conf --- .../x11/other/ratpoison/profile.d/{ratpoison => ratpoison.conf} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/x11/other/ratpoison/profile.d/{ratpoison => ratpoison.conf} (100%) diff --git a/packages/x11/other/ratpoison/profile.d/ratpoison b/packages/x11/other/ratpoison/profile.d/ratpoison.conf similarity index 100% rename from packages/x11/other/ratpoison/profile.d/ratpoison rename to packages/x11/other/ratpoison/profile.d/ratpoison.conf From ddacdabcbe01b461e9501d4840c2481ea6a7fee7 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:50:55 +0100 Subject: [PATCH 34/43] scripts/install: - rename profile.d/* to profile.d/*.conf --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 21e61e5982..cbf67edae6 100755 --- a/scripts/install +++ b/scripts/install @@ -24,7 +24,7 @@ fi if [ -d $PKG_DIR/profile.d ]; then mkdir -p $INSTALL/etc/profile.d - cp $PKG_DIR/profile.d/* $INSTALL/etc/profile.d/ + cp $PKG_DIR/profile.d/*.conf $INSTALL/etc/profile.d/ fi $SCRIPTS/build $@ From b37c2c2918bff40dacb0594fc947cdfa1f470b01 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:03:59 +0100 Subject: [PATCH 35/43] xbmc: - cleanup /etc/profile.d/xbmc.conf - remove caching function --- packages/mediacenter/xbmc/profile.d/xbmc.conf | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/packages/mediacenter/xbmc/profile.d/xbmc.conf b/packages/mediacenter/xbmc/profile.d/xbmc.conf index dcc5b9bf9b..e0aff709be 100644 --- a/packages/mediacenter/xbmc/profile.d/xbmc.conf +++ b/packages/mediacenter/xbmc/profile.d/xbmc.conf @@ -5,25 +5,6 @@ # evironment variables that are not user defined. ################################################################################ -XBMC_CACHING="no" - -#------------------------------------------------------------------------------- -# do not change anything below -#------------------------------------------------------------------------------- - XBMC_HOME="/usr/share/xbmc" export XBMC_HOME - -cache_xbmc () { - progress "caching XBMC" - mkdir -p /var/cache/bin - $IONICE cp -PR /usr/share/xbmc/xbmc.bin /var/cache/bin - touch /var/cache/xbmc.cache -} - -wait_for_xbmc_cache () { - while [ ! -f /var/cache/xbmc.cache ]; do - sleep 1 - done -} \ No newline at end of file From 09a731f854142d66bbe57cc72edcc3bf3b3a2c9d Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:05:30 +0100 Subject: [PATCH 36/43] SABnzbd: - move /etc/profile.d/SABnzbd.conf to /etc/sabnzbd.conf --- .../{profile.d/SABnzbd.conf => config/sabnzbd.conf} | 0 packages/plugins/SABnzbd/init.d/33_SABnzbd | 2 ++ packages/plugins/SABnzbd/install | 7 ++++++- 3 files changed, 8 insertions(+), 1 deletion(-) rename packages/plugins/SABnzbd/{profile.d/SABnzbd.conf => config/sabnzbd.conf} (100%) diff --git a/packages/plugins/SABnzbd/profile.d/SABnzbd.conf b/packages/plugins/SABnzbd/config/sabnzbd.conf similarity index 100% rename from packages/plugins/SABnzbd/profile.d/SABnzbd.conf rename to packages/plugins/SABnzbd/config/sabnzbd.conf diff --git a/packages/plugins/SABnzbd/init.d/33_SABnzbd b/packages/plugins/SABnzbd/init.d/33_SABnzbd index 458c62e1d4..8a23d93551 100755 --- a/packages/plugins/SABnzbd/init.d/33_SABnzbd +++ b/packages/plugins/SABnzbd/init.d/33_SABnzbd @@ -5,5 +5,7 @@ ( progress "Starting SABnzbd Newsgroup downloader daemon" + . /etc/sabnzbd.conf + python /usr/share/SABnzbd/SABnzbd.py -d $SABNZBD_ARGS > /dev/null 2>&1 )& diff --git a/packages/plugins/SABnzbd/install b/packages/plugins/SABnzbd/install index 632fef0c72..b8772593f2 100755 --- a/packages/plugins/SABnzbd/install +++ b/packages/plugins/SABnzbd/install @@ -10,5 +10,10 @@ $SCRIPTS/install unrar $SCRIPTS/install unzip $SCRIPTS/install par2cmdline +PKG_DIR=`find $PACKAGES -type d -name $1` + mkdir -p $INSTALL/usr/share/$1 - cp -PR $BUILD/$1*/* $INSTALL/usr/share/$1 + cp -P $BUILD/$1*/* $INSTALL/usr/share/$1 + +mkdir -p $INSTALL/etc + cp -P $PKG_DIR/config/*.conf $INSTALL/etc From 4751f4fd417eacab284968dca42dded7724edb1f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:11:29 +0100 Subject: [PATCH 37/43] busybox: - add /etc/profile.d/configcache.conf for permanent caching of configfiles to /storage/.cache - add /etc/profile.d/fastboot.conf for fastboot config variables - remove /etc/profile.d/home.conf - add /etc/profile.d/hostname.conf for hostnam config variable - remove /etc/profile.d/language.conf - cleanup /etc/profile.d/path.conf - add /etc/profile.d/runlevel.conf for detecting runlevel (move from /sbin/init) - cleanup /etc/profile.d/shell.conf - start /sbin/init with login shell to have access to profile.d variables - remove additional read of /etc/profile --- .../profile.d/{language.conf => configcache.conf} | 9 +++------ .../profile.d/{home.conf => fastboot.conf} | 15 +++++++++------ packages/sysutils/busybox/profile.d/hostname.conf | 10 ++++++++++ packages/sysutils/busybox/profile.d/path.conf | 3 --- packages/sysutils/busybox/profile.d/runlevel.conf | 14 ++++++++++++++ packages/sysutils/busybox/profile.d/shell.conf | 3 --- packages/sysutils/busybox/scripts/init | 11 +---------- 7 files changed, 37 insertions(+), 28 deletions(-) rename packages/sysutils/busybox/profile.d/{language.conf => configcache.conf} (53%) rename packages/sysutils/busybox/profile.d/{home.conf => fastboot.conf} (53%) create mode 100644 packages/sysutils/busybox/profile.d/hostname.conf create mode 100644 packages/sysutils/busybox/profile.d/runlevel.conf diff --git a/packages/sysutils/busybox/profile.d/language.conf b/packages/sysutils/busybox/profile.d/configcache.conf similarity index 53% rename from packages/sysutils/busybox/profile.d/language.conf rename to packages/sysutils/busybox/profile.d/configcache.conf index f0d12a43ed..8370bf345f 100644 --- a/packages/sysutils/busybox/profile.d/language.conf +++ b/packages/sysutils/busybox/profile.d/configcache.conf @@ -1,13 +1,10 @@ ################################################################################ -# Core (Language) environment variables. +# Core (Shell) environment variables. # # This file contains non-OpenELEC evironment variables as well as OpenELEC # evironment variables that are not user defined. ################################################################################ -#------------------------------------------------------------------------------- -# Language variables. -#------------------------------------------------------------------------------- -LANG='de_DE.UTF-8' +CONFIG_CACHE="/storage/.cache" -export LANG +export CONFIG_CACHE \ No newline at end of file diff --git a/packages/sysutils/busybox/profile.d/home.conf b/packages/sysutils/busybox/profile.d/fastboot.conf similarity index 53% rename from packages/sysutils/busybox/profile.d/home.conf rename to packages/sysutils/busybox/profile.d/fastboot.conf index 4f3c80f557..1e0fb0b912 100644 --- a/packages/sysutils/busybox/profile.d/home.conf +++ b/packages/sysutils/busybox/profile.d/fastboot.conf @@ -1,13 +1,16 @@ ################################################################################ -# Core (HOME) environment variables. +# Core (Shell) environment variables. # # This file contains non-OpenELEC evironment variables as well as OpenELEC # evironment variables that are not user defined. ################################################################################ -#------------------------------------------------------------------------------- -# Home environment variables. -#------------------------------------------------------------------------------- -HOME="/storage" +# setting some Variables + if test "$FASTBOOT" = "yes"; then + IONICE="ionice -c 1 -n 0" + NICE_20="nice -n -20" + else + FASTBOOT=no + fi -export HOME +export FASTBOOT \ No newline at end of file diff --git a/packages/sysutils/busybox/profile.d/hostname.conf b/packages/sysutils/busybox/profile.d/hostname.conf new file mode 100644 index 0000000000..c03c63228b --- /dev/null +++ b/packages/sysutils/busybox/profile.d/hostname.conf @@ -0,0 +1,10 @@ +################################################################################ +# Core (Shell) environment variables. +# +# This file contains non-OpenELEC evironment variables as well as OpenELEC +# evironment variables that are not user defined. +################################################################################ + +HOSTNAME=`cat /etc/hostname` + +export HOSTNAME \ No newline at end of file diff --git a/packages/sysutils/busybox/profile.d/path.conf b/packages/sysutils/busybox/profile.d/path.conf index d09d931f6e..18c81147bd 100644 --- a/packages/sysutils/busybox/profile.d/path.conf +++ b/packages/sysutils/busybox/profile.d/path.conf @@ -5,9 +5,6 @@ # evironment variables that are not user defined. ################################################################################ -#------------------------------------------------------------------------------- -# General environment variables. -#------------------------------------------------------------------------------- PATH="/bin:/sbin:/usr/bin:/usr/sbin" export PATH diff --git a/packages/sysutils/busybox/profile.d/runlevel.conf b/packages/sysutils/busybox/profile.d/runlevel.conf new file mode 100644 index 0000000000..94bc54df8f --- /dev/null +++ b/packages/sysutils/busybox/profile.d/runlevel.conf @@ -0,0 +1,14 @@ +################################################################################ +# Core (Shell) environment variables. +# +# This file contains non-OpenELEC evironment variables as well as OpenELEC +# evironment variables that are not user defined. +################################################################################ + +# getting runlevel + RUNLEVEL="openelec" + if test "$TEXTMODE" = yes; then + RUNLEVEL="textmode" + fi + +export RUNLEVEL \ No newline at end of file diff --git a/packages/sysutils/busybox/profile.d/shell.conf b/packages/sysutils/busybox/profile.d/shell.conf index a6f97f1d42..6fca97cfc5 100644 --- a/packages/sysutils/busybox/profile.d/shell.conf +++ b/packages/sysutils/busybox/profile.d/shell.conf @@ -5,9 +5,6 @@ # evironment variables that are not user defined. ################################################################################ -#------------------------------------------------------------------------------- -# Prompt environment variables. -#------------------------------------------------------------------------------- PS1='\u@\h:\w \$ ' export PS1 \ No newline at end of file diff --git a/packages/sysutils/busybox/scripts/init b/packages/sysutils/busybox/scripts/init index acc61e6114..0a0d1756d8 100755 --- a/packages/sysutils/busybox/scripts/init +++ b/packages/sysutils/busybox/scripts/init @@ -1,13 +1,4 @@ -#!/bin/sh - -# read config - . /etc/profile - -# getting runlevel - RUNLEVEL="openelec" - if test "$TEXTMODE" = yes; then - RUNLEVEL="textmode" - fi +#!/bin/sh -l # starting init scripts for wanted runlevel progress "Starting Init Scripts" From bb5e7c8a7d2b4f55772fac7be9ef3d3386ba369c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:12:07 +0100 Subject: [PATCH 38/43] busybox: - remove /etc/init.d/07_userconfig --- packages/sysutils/busybox/init.d/07_userconfig | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 packages/sysutils/busybox/init.d/07_userconfig diff --git a/packages/sysutils/busybox/init.d/07_userconfig b/packages/sysutils/busybox/init.d/07_userconfig deleted file mode 100755 index c5ea9e70d4..0000000000 --- a/packages/sysutils/busybox/init.d/07_userconfig +++ /dev/null @@ -1,13 +0,0 @@ -# -# copying config into storage -# -# runlevels: openelec, textmode - -progress "copying config into storage" - - $IONICE mkdir -p $HOME/.config - - for i in `ls /usr/config`; do - [ ! -f "$HOME/.config/$i" ] && cp -PR /usr/config/$i $HOME/.config - done - From b42ad7389f792b5313cc2a7ec6546966038035c4 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:12:40 +0100 Subject: [PATCH 39/43] ratpoison: - export variable WINDOWMANAGER to system --- packages/x11/other/ratpoison/profile.d/ratpoison.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/x11/other/ratpoison/profile.d/ratpoison.conf b/packages/x11/other/ratpoison/profile.d/ratpoison.conf index 8534c10042..51ecaa05a9 100644 --- a/packages/x11/other/ratpoison/profile.d/ratpoison.conf +++ b/packages/x11/other/ratpoison/profile.d/ratpoison.conf @@ -6,3 +6,5 @@ ################################################################################ WINDOWMANAGER="ratpoison" + +export WINDOWMANAGER \ No newline at end of file From 18bd39f3101fb306aef3888f6b75e1359a4af96f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:13:37 +0100 Subject: [PATCH 40/43] udev: - cleanup - use /dev/rules.d for variable system rules --- packages/sysutils/udev/init.d/01_udevd | 2 ++ packages/sysutils/udev/init.d/03_udev-trigger | 2 -- packages/sysutils/udev/install | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/sysutils/udev/init.d/01_udevd b/packages/sysutils/udev/init.d/01_udevd index 31f59e937f..24f9fb54b6 100755 --- a/packages/sysutils/udev/init.d/01_udevd +++ b/packages/sysutils/udev/init.d/01_udevd @@ -7,5 +7,7 @@ progress "starting udev daemon" echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug + $IONICE mkdir -p /dev/rules.d + $NICE_20 udevd --daemon $NICE_20 udevadm monitor 2>&1 >/dev/udev.log & diff --git a/packages/sysutils/udev/init.d/03_udev-trigger b/packages/sysutils/udev/init.d/03_udev-trigger index 24621a146a..0c0c7d6bea 100755 --- a/packages/sysutils/udev/init.d/03_udev-trigger +++ b/packages/sysutils/udev/init.d/03_udev-trigger @@ -6,8 +6,6 @@ progress "request udev events from the kernel" ( -# $NICE_20 udevadm control --env STARTUP=1 $NICE_20 udevadm trigger $NICE_20 udevadm settle --timeout=5 -# $NICE_20 udevadm control --env STARTUP= )& diff --git a/packages/sysutils/udev/install b/packages/sysutils/udev/install index c5fc409c38..4762bba424 100755 --- a/packages/sysutils/udev/install +++ b/packages/sysutils/udev/install @@ -67,6 +67,4 @@ mkdir -p $INSTALL/lib/udev/rules.d mkdir -p $INSTALL/etc/udev cp $PKG_BUILD/udev.conf $INSTALL/etc/udev - -mkdir -p $INSTALL/usr/config/rules.d - ln -sf /storage/.config/rules.d $INSTALL/etc/udev/rules.d + ln -sf /dev/rules.d $INSTALL/etc/udev/rules.d From bd12db1058f67ce73fdc4dd75518a46839ebbfc9 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 12:14:31 +0100 Subject: [PATCH 41/43] dropbear: - use /storage/.cache/dropbear for SSH keys --- packages/network/dropbear/init.d/41_sshd | 12 ++++++------ packages/network/dropbear/install | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/network/dropbear/init.d/41_sshd b/packages/network/dropbear/init.d/41_sshd index 5f63718fa6..b290eff55a 100755 --- a/packages/network/dropbear/init.d/41_sshd +++ b/packages/network/dropbear/init.d/41_sshd @@ -4,19 +4,19 @@ ( # Check for the Dropbear RSA key - if [ ! -f /etc/dropbear/dropbear_rsa_host_key ] ; then + if [ ! -f /storage/.cache/dropbear/dropbear_rsa_host_key ] ; then progress "SSH: generating rsa key" - $IONICE mkdir -p /etc/dropbear - dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key > /dev/null 2>&1 + $IONICE mkdir -p /storage/.cache/dropbear + dropbearkey -t rsa -f /storage/.cache/dropbear/dropbear_rsa_host_key > /dev/null 2>&1 fi # Check for the Dropbear DSS key - if [ ! -f /etc/dropbear/dropbear_dss_host_key ] ; then + if [ ! -f /storage/.cache/dropbear/dropbear_dss_host_key ] ; then progress "SSH: generating dsa key" - $IONICE mkdir -p /etc/dropbear - dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key > /dev/null 2>&1 + $IONICE mkdir -p /storage/.cache/dropbear + dropbearkey -t dss -f /storage/.cache/dropbear/dropbear_dss_host_key > /dev/null 2>&1 fi progress "Starting SSH Server" diff --git a/packages/network/dropbear/install b/packages/network/dropbear/install index bb34dc1fbb..f3d26c5eb0 100755 --- a/packages/network/dropbear/install +++ b/packages/network/dropbear/install @@ -13,5 +13,5 @@ mkdir -p $INSTALL/usr/bin cp -PR $PKG_BUILD/dropbearkey $INSTALL/usr/bin cp -PR $PKG_BUILD/scp $INSTALL/usr/bin -mkdir -p $INSTALL/usr/config/dropbear - ln -s /storage/.config/dropbear $INSTALL/etc/dropbear \ No newline at end of file +mkdir -p $INSTALL/etc + ln -s /storage/.cache/dropbear $INSTALL/etc/dropbear \ No newline at end of file From 84ba822f079e2d6a316196ed2bf41abe15a37c3a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 26 Mar 2010 11:08:55 +0100 Subject: [PATCH 42/43] busybox: - cleanup - create /etc/hosts at install time --- packages/sysutils/busybox/init.d/08_network | 7 ------- packages/sysutils/busybox/install | 14 +++++++++----- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/packages/sysutils/busybox/init.d/08_network b/packages/sysutils/busybox/init.d/08_network index 58e7be486d..17c3e06c9f 100755 --- a/packages/sysutils/busybox/init.d/08_network +++ b/packages/sysutils/busybox/init.d/08_network @@ -3,10 +3,6 @@ # # runlevels: openelec, textmode -HOSTNAME=`cat /etc/hostname` - -export $HOSTNAME - # bring lo up, whether we have network card or not progress "starting Loopback Network interface" ifconfig lo 127.0.0.1 up @@ -14,6 +10,3 @@ export $HOSTNAME # setup hostname progress "Setup hostname" echo $HOSTNAME > /proc/sys/kernel/hostname - -# create /etc/hosts file, useful for gethostbyname(localhost) - echo -e "127.0.0.1\tlocalhost $HOSTNAME" > /var/run/hosts diff --git a/packages/sysutils/busybox/install b/packages/sysutils/busybox/install index 5999cc6866..aa527b7ccd 100755 --- a/packages/sysutils/busybox/install +++ b/packages/sysutils/busybox/install @@ -22,14 +22,21 @@ USER_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw $USER_PASSWORD`" mkdir -p $INSTALL/bin ln -sf /bin/sh $INSTALL/bin/bash + mkdir -p $INSTALL/sbin + cp $PKG_DIR/scripts/init $INSTALL/sbin/ + mkdir -p $INSTALL/etc cp $PKG_DIR/config/profile $INSTALL/etc touch $INSTALL/etc/fstab ln -sf /var/run/resolv.conf $INSTALL/etc/resolv.conf - ln -sf /var/run/hosts $INSTALL/etc/hosts +# create /etc/hostname echo $HOSTNAME > $INSTALL/etc/hostname +# create /etc/hosts file, useful for gethostbyname(localhost) + echo -e "127.0.0.1\tlocalhost $HOSTNAME" > $INSTALL/etc/hosts + +# create /etc/issue echo $GREATING0 > $INSTALL/etc/issue echo $GREATING1 >> $INSTALL/etc/issue echo $GREATING2 >> $INSTALL/etc/issue @@ -39,10 +46,7 @@ USER_PWD="`$ROOT/$TOOLCHAIN/bin/cryptpw $USER_PASSWORD`" mkdir -p $INSTALL/usr/share/udhcpc cp $PKG_DIR/scripts/udhcp.script $INSTALL/usr/share/udhcpc/default.script - mkdir -p $INSTALL/sbin - cp $PKG_DIR/scripts/init $INSTALL/sbin/ - - # acpid specific +# acpid specific mkdir -p $INSTALL/etc/acpi/PWRF cp $PKG_DIR/scripts/acpi_powerbtn $INSTALL/etc/acpi/PWRF/00000080 From 88851de9d41d7bba4099c958ffcf14f838c89b78 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 26 Mar 2010 11:09:16 +0100 Subject: [PATCH 43/43] xf86-input-synaptics: - update to xf86-input-synaptics-1.2.2 --- packages/x11/driver/xf86-input-synaptics/url | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x11/driver/xf86-input-synaptics/url b/packages/x11/driver/xf86-input-synaptics/url index cfd5420c1f..3fc046e37c 100644 --- a/packages/x11/driver/xf86-input-synaptics/url +++ b/packages/x11/driver/xf86-input-synaptics/url @@ -1 +1 @@ -http://xorg.freedesktop.org/archive/individual/driver/xf86-input-synaptics-1.2.1.tar.bz2 \ No newline at end of file +http://xorg.freedesktop.org/archive/individual/driver/xf86-input-synaptics-1.2.2.tar.bz2