mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 05:06:43 +00:00
Merge branch 'master' of github.com:OpenELEC/OpenELEC.tv
This commit is contained in:
commit
7b8b45e469
@ -1,3 +1,6 @@
|
|||||||
|
3.0.9
|
||||||
|
- update to TVHeadend 3.4
|
||||||
|
|
||||||
3.0.8
|
3.0.8
|
||||||
- update to TVHeadend 3.3.521
|
- update to TVHeadend 3.3.521
|
||||||
|
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="tvheadend"
|
PKG_NAME="tvheadend"
|
||||||
PKG_VERSION="3.3.521"
|
PKG_VERSION="3.4"
|
||||||
PKG_REV="8"
|
PKG_REV="9"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://www.lonelycoder.com/hts/tvheadend_overview.html"
|
PKG_SITE="http://www.lonelycoder.com/hts/tvheadend_overview.html"
|
||||||
|
26
packages/addons/shell/console/screen/addon
Executable file
26
packages/addons/shell/console/screen/addon
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/bin
|
||||||
|
cp -P $PKG_BUILD/screen $ADDON_BUILD/$PKG_ADDON_ID/bin/screen
|
37
packages/addons/shell/console/screen/build
Executable file
37
packages/addons/shell/console/screen/build
Executable file
@ -0,0 +1,37 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
LDFLAGS=`echo $LDFLAGS | sed -e "s|-Wl,--as-needed||"`
|
||||||
|
LDFLAGS="$LDFLAGS -ltinfo"
|
||||||
|
|
||||||
|
cd $PKG_BUILD
|
||||||
|
./configure --host=$TARGET_NAME \
|
||||||
|
--build=$HOST_NAME \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--disable-pam \
|
||||||
|
--disable-locale \
|
||||||
|
--disable-telnet
|
||||||
|
|
||||||
|
make
|
2
packages/addons/shell/console/screen/changelog.txt
Normal file
2
packages/addons/shell/console/screen/changelog.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
3.0.1
|
||||||
|
- initial addon based on screen-4.0.3
|
BIN
packages/addons/shell/console/screen/icon/icon.png
Normal file
BIN
packages/addons/shell/console/screen/icon/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
36
packages/addons/shell/console/screen/meta
Normal file
36
packages/addons/shell/console/screen/meta
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
PKG_NAME="screen"
|
||||||
|
PKG_VERSION="4.0.3"
|
||||||
|
PKG_REV="1"
|
||||||
|
PKG_ARCH="any"
|
||||||
|
PKG_LICENSE="GPL"
|
||||||
|
PKG_SITE="http://www.gnu.org/software/screen/"
|
||||||
|
PKG_URL="http://ftp.gnu.org/gnu/screen/screen-${PKG_VERSION}.tar.gz"
|
||||||
|
PKG_DEPENDS="ncurses"
|
||||||
|
PKG_BUILD_DEPENDS="toolchain ncurses"
|
||||||
|
PKG_PRIORITY="optional"
|
||||||
|
PKG_SECTION="shell/console"
|
||||||
|
PKG_SHORTDESC="terminal multiplexor with VT100/ANSI terminal emulation"
|
||||||
|
PKG_LONGDESC="screen is a terminal multiplexor that runs several separate "screens" on a single physical character-based terminal. Each virtual terminal emulates a DEC VT100 plus several ANSI X3.64 and ISO 2022 functions. Screen sessions can be detached and resumed later on a different terminal."
|
||||||
|
|
||||||
|
PKG_IS_ADDON="yes"
|
||||||
|
PKG_ADDON_TYPE="xbmc.python.script"
|
@ -0,0 +1,530 @@
|
|||||||
|
Binary files screen-4.0.2.old/.configure.swp and screen-4.0.2.dev/.configure.swp differ
|
||||||
|
diff -urN screen-4.0.2.old/configure screen-4.0.2.dev/configure
|
||||||
|
--- screen-4.0.2.old/configure 2003-12-05 14:46:53.000000000 +0100
|
||||||
|
+++ screen-4.0.2.dev/configure 2005-05-05 12:13:03.000000000 +0200
|
||||||
|
@@ -124,7 +124,7 @@
|
||||||
|
fi
|
||||||
|
if test ! -f "$as_myself"; then
|
||||||
|
{ echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
case $CONFIG_SHELL in
|
||||||
|
'')
|
||||||
|
@@ -174,7 +174,7 @@
|
||||||
|
' >$as_me.lineno &&
|
||||||
|
chmod +x $as_me.lineno ||
|
||||||
|
{ echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
|
||||||
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
||||||
|
# (the dirname of $[0] is not the place where we might find the
|
||||||
|
@@ -397,7 +397,7 @@
|
||||||
|
# Reject names that are not valid shell variable names.
|
||||||
|
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
||||||
|
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
||||||
|
eval "enable_$ac_feature=no" ;;
|
||||||
|
|
||||||
|
@@ -406,7 +406,7 @@
|
||||||
|
# Reject names that are not valid shell variable names.
|
||||||
|
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
||||||
|
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
||||||
|
case $ac_option in
|
||||||
|
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
||||||
|
@@ -588,7 +588,7 @@
|
||||||
|
# Reject names that are not valid shell variable names.
|
||||||
|
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
||||||
|
{ echo "$as_me: error: invalid package name: $ac_package" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
ac_package=`echo $ac_package| sed 's/-/_/g'`
|
||||||
|
case $ac_option in
|
||||||
|
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
||||||
|
@@ -601,7 +601,7 @@
|
||||||
|
# Reject names that are not valid shell variable names.
|
||||||
|
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
||||||
|
{ echo "$as_me: error: invalid package name: $ac_package" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
ac_package=`echo $ac_package | sed 's/-/_/g'`
|
||||||
|
eval "with_$ac_package=no" ;;
|
||||||
|
|
||||||
|
@@ -625,7 +625,7 @@
|
||||||
|
|
||||||
|
-*) { echo "$as_me: error: unrecognized option: $ac_option
|
||||||
|
Try \`$0 --help' for more information." >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
;;
|
||||||
|
|
||||||
|
*=*)
|
||||||
|
@@ -633,7 +633,7 @@
|
||||||
|
# Reject names that are not valid shell variable names.
|
||||||
|
expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
|
||||||
|
{ echo "$as_me: error: invalid variable name: $ac_envvar" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
|
||||||
|
eval "$ac_envvar='$ac_optarg'"
|
||||||
|
export $ac_envvar ;;
|
||||||
|
@@ -652,7 +652,7 @@
|
||||||
|
if test -n "$ac_prev"; then
|
||||||
|
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
|
||||||
|
{ echo "$as_me: error: missing argument to $ac_option" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Be sure to have absolute paths.
|
||||||
|
@@ -662,7 +662,7 @@
|
||||||
|
case $ac_val in
|
||||||
|
[\\/$]* | ?:[\\/]* | NONE | '' ) ;;
|
||||||
|
*) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
|
||||||
|
- { (exit 1); exit 1; }; };;
|
||||||
|
+ };;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
@@ -674,7 +674,7 @@
|
||||||
|
case $ac_val in
|
||||||
|
[\\/$]* | ?:[\\/]* ) ;;
|
||||||
|
*) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
|
||||||
|
- { (exit 1); exit 1; }; };;
|
||||||
|
+ };;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
@@ -728,15 +728,15 @@
|
||||||
|
if test ! -r $srcdir/$ac_unique_file; then
|
||||||
|
if test "$ac_srcdir_defaulted" = yes; then
|
||||||
|
{ echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
{ echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
|
||||||
|
{ echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
|
||||||
|
ac_env_build_alias_set=${build_alias+set}
|
||||||
|
ac_env_build_alias_value=$build_alias
|
||||||
|
@@ -1243,7 +1243,7 @@
|
||||||
|
echo "$as_me: error: changes in the environment can compromise the build" >&2;}
|
||||||
|
{ { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
|
||||||
|
echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
|
||||||
|
ac_ext=c
|
||||||
|
@@ -1734,7 +1734,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: no acceptable C compiler found in \$PATH
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
|
||||||
|
# Provide some information about the compiler.
|
||||||
|
echo "$as_me:$LINENO:" \
|
||||||
|
@@ -1856,7 +1856,7 @@
|
||||||
|
echo "$as_me: error: cannot run C compiled programs.
|
||||||
|
If you meant to cross compile, use \`--host'.
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
@@ -1898,7 +1898,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f conftest$ac_cv_exeext
|
||||||
|
@@ -1950,7 +1950,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot compute suffix of object files: cannot compile
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f conftest.$ac_cv_objext conftest.$ac_ext
|
||||||
|
@@ -2514,7 +2514,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
|
||||||
|
ac_ext=c
|
||||||
|
@@ -2704,7 +2704,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -2753,7 +2753,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -2790,7 +2790,7 @@
|
||||||
|
|
||||||
|
{ { echo "$as_me:$LINENO: error: Can't run the compiler - sorry" >&5
|
||||||
|
echo "$as_me: error: Can't run the compiler - sorry" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
@@ -2800,7 +2800,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -2830,7 +2830,7 @@
|
||||||
|
(exit $ac_status); }; }; then
|
||||||
|
{ { echo "$as_me:$LINENO: error: Your compiler does not set the exit status - sorry" >&5
|
||||||
|
echo "$as_me: error: Your compiler does not set the exit status - sorry" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
echo "$as_me: program exited with status $ac_status" >&5
|
||||||
|
echo "$as_me: failed program was:" >&5
|
||||||
|
@@ -2900,7 +2900,7 @@
|
||||||
|
if test -z "$ac_aux_dir"; then
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
|
||||||
|
echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
ac_config_guess="$SHELL $ac_aux_dir/config.guess"
|
||||||
|
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
|
||||||
|
@@ -4149,7 +4149,7 @@
|
||||||
|
|
||||||
|
{ { echo "$as_me:$LINENO: error: !!! no select - no screen" >&5
|
||||||
|
echo "$as_me: error: !!! no select - no screen" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
||||||
|
|
||||||
|
@@ -4163,7 +4163,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -4272,7 +4272,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -4365,7 +4365,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -4460,7 +4460,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -4562,7 +4562,7 @@
|
||||||
|
else
|
||||||
|
{ { echo "$as_me:$LINENO: error: you have neither usable sockets nor usable pipes -> no screen" >&5
|
||||||
|
echo "$as_me: error: you have neither usable sockets nor usable pipes -> no screen" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@@ -4573,7 +4573,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -4898,7 +4898,7 @@
|
||||||
|
|
||||||
|
{ { echo "$as_me:$LINENO: error: !!! no tgetent - no screen" >&5
|
||||||
|
echo "$as_me: error: !!! no tgetent - no screen" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
@@ -4915,7 +4915,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -5359,7 +5356,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -6206,7 +6203,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -6482,7 +6479,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -7004,7 +7001,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -7056,7 +7053,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -7110,7 +7107,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -7951,7 +7948,7 @@
|
||||||
|
See \`config.log' for more details." >&5
|
||||||
|
echo "$as_me: error: cannot run test program while cross compiling
|
||||||
|
See \`config.log' for more details." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
else
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
@@ -7982,7 +7979,7 @@
|
||||||
|
( exit $ac_status )
|
||||||
|
{ { echo "$as_me:$LINENO: error: Can't run the compiler - internal error. Sorry." >&5
|
||||||
|
echo "$as_me: error: Can't run the compiler - internal error. Sorry." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
@@ -8251,7 +8248,7 @@
|
||||||
|
if test ! -f "$as_myself"; then
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
|
||||||
|
echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi
|
||||||
|
case $CONFIG_SHELL in
|
||||||
|
'')
|
||||||
|
@@ -8302,7 +8299,7 @@
|
||||||
|
chmod +x $as_me.lineno ||
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
|
||||||
|
echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
|
||||||
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
||||||
|
# (the dirname of $[0] is not the place where we might find the
|
||||||
|
@@ -8494,7 +8491,7 @@
|
||||||
|
Try \`$0 --help' for more information." >&5
|
||||||
|
echo "$as_me: error: ambiguous option: $1
|
||||||
|
Try \`$0 --help' for more information." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; };;
|
||||||
|
+ };;
|
||||||
|
--help | --hel | -h )
|
||||||
|
echo "$ac_cs_usage"; exit 0 ;;
|
||||||
|
--debug | --d* | -d )
|
||||||
|
@@ -8516,7 +8513,7 @@
|
||||||
|
Try \`$0 --help' for more information." >&5
|
||||||
|
echo "$as_me: error: unrecognized option: $1
|
||||||
|
Try \`$0 --help' for more information." >&2;}
|
||||||
|
- { (exit 1); exit 1; }; } ;;
|
||||||
|
+ } ;;
|
||||||
|
|
||||||
|
*) ac_config_targets="$ac_config_targets $1" ;;
|
||||||
|
|
||||||
|
@@ -8555,7 +8552,7 @@
|
||||||
|
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
||||||
|
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||||
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; };;
|
||||||
|
+ };;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
@@ -8750,7 +8747,7 @@
|
||||||
|
test ! -n "$as_dirs" || mkdir $as_dirs
|
||||||
|
fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
|
||||||
|
echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }; }
|
||||||
|
+ }; }
|
||||||
|
|
||||||
|
ac_builddir=.
|
||||||
|
|
||||||
|
@@ -8816,7 +8813,7 @@
|
||||||
|
# Absolute (can't be DOS-style, as IFS=:)
|
||||||
|
test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
echo $f;;
|
||||||
|
*) # Relative
|
||||||
|
if test -f "$f"; then
|
||||||
|
@@ -8829,7 +8826,7 @@
|
||||||
|
# /dev/null tree
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi;;
|
||||||
|
esac
|
||||||
|
done` || { (exit 1); exit 1; }
|
||||||
|
@@ -8907,7 +8904,7 @@
|
||||||
|
# Absolute (can't be DOS-style, as IFS=:)
|
||||||
|
test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
echo $f;;
|
||||||
|
*) # Relative
|
||||||
|
if test -f "$f"; then
|
||||||
|
@@ -8920,7 +8917,7 @@
|
||||||
|
# /dev/null tree
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }
|
||||||
|
+ }
|
||||||
|
fi;;
|
||||||
|
esac
|
||||||
|
done` || { (exit 1); exit 1; }
|
||||||
|
@@ -9073,7 +9070,7 @@
|
||||||
|
test ! -n "$as_dirs" || mkdir $as_dirs
|
||||||
|
fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
|
||||||
|
echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
|
||||||
|
- { (exit 1); exit 1; }; }; }
|
||||||
|
+ }; }
|
||||||
|
|
||||||
|
rm -f $ac_file
|
||||||
|
mv $tmp/config.h $ac_file
|
||||||
|
diff -urN screen-4.0.2.old/pty.c screen-4.0.2.dev/pty.c
|
||||||
|
--- screen-4.0.2.old/pty.c 2003-09-08 16:26:18.000000000 +0200
|
||||||
|
+++ screen-4.0.2.dev/pty.c 2005-05-05 12:32:20.000000000 +0200
|
||||||
|
@@ -34,9 +34,9 @@
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* for solaris 2.1, Unixware (SVR4.2) and possibly others */
|
||||||
|
-#ifdef HAVE_SVR4_PTYS
|
||||||
|
-# include <sys/stropts.h>
|
||||||
|
-#endif
|
||||||
|
+//#ifdef HAVE_SVR4_PTYS
|
||||||
|
+//# include <sys/stropts.h>
|
||||||
|
+//#endif
|
||||||
|
|
||||||
|
#if defined(sun) && defined(LOCKPTY) && !defined(TIOCEXCL)
|
||||||
|
# include <sys/ttold.h>
|
||||||
|
--- screen-4.0.2/configure.old 2005-05-24 18:49:30.000000000 +0200
|
||||||
|
+++ screen-4.0.2/configure 2005-05-24 18:49:54.000000000 +0200
|
||||||
|
@@ -6598,8 +6598,6 @@
|
||||||
|
LIBS="$oldlibs"
|
||||||
|
fi
|
||||||
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
||||||
|
-test -f /lib/libsec.a || test -f /usr/lib/libsec.a && LIBS="$LIBS -lsec"
|
||||||
|
-test -f /lib/libshadow.a || test -f /usr/lib/libshadow.a && LIBS="$LIBS -lshadow"
|
||||||
|
oldlibs="$LIBS"
|
||||||
|
LIBS="$LIBS -lsun"
|
||||||
|
{ echo "$as_me:$LINENO: checking IRIX sun library..." >&5
|
||||||
|
diff -ur screen.old/sched.h screen.dev/sched.h
|
||||||
|
--- screen.old/sched.h 2002-01-08 16:42:43.000000000 +0100
|
||||||
|
+++ screen.dev/sched.h 2007-03-02 17:03:48.475830776 +0100
|
||||||
|
@@ -22,6 +22,11 @@
|
||||||
|
* $Id: 100-cross_compile_fix.patch 6458 2007-03-02 16:12:30Z nbd $ FAU
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#ifndef __SCHED_H
|
||||||
|
+#define __SCHED_H
|
||||||
|
+
|
||||||
|
+#include <sys/time.h>
|
||||||
|
+
|
||||||
|
struct event
|
||||||
|
{
|
||||||
|
struct event *next;
|
||||||
|
@@ -41,3 +46,5 @@
|
||||||
|
#define EV_READ 1
|
||||||
|
#define EV_WRITE 2
|
||||||
|
#define EV_ALWAYS 3
|
||||||
|
+
|
||||||
|
+#endif
|
23
packages/addons/shell/console/screen/source/default.py
Normal file
23
packages/addons/shell/console/screen/source/default.py
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import xbmcaddon
|
@ -42,7 +42,12 @@ if [ -z "$1" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
DISK="$1"
|
DISK="$1"
|
||||||
PART="${DISK}1"
|
|
||||||
|
### If DISK ends with a number, add "p1" instead of "1" for the first partition
|
||||||
|
case "${DISK: -1:1}" in
|
||||||
|
([0-9]) PART="${DISK}p1";;
|
||||||
|
(*) PART="${DISK}1";;
|
||||||
|
esac
|
||||||
|
|
||||||
clear
|
clear
|
||||||
echo "#########################################################"
|
echo "#########################################################"
|
||||||
@ -232,9 +237,16 @@ EOF
|
|||||||
cp README.md /tmp/usb_install
|
cp README.md /tmp/usb_install
|
||||||
cp RELEASE /tmp/usb_install
|
cp RELEASE /tmp/usb_install
|
||||||
|
|
||||||
cp 3rdparty/syslinux/vesamenu.c32 /tmp/usb_install
|
|
||||||
cp splash.png /tmp/usb_install
|
cp splash.png /tmp/usb_install
|
||||||
|
|
||||||
|
if [ -f /usr/lib/syslinux/vesamenu.c32 ]; then
|
||||||
|
cp /usr/lib/syslinux/vesamenu.c32 /tmp/usb_install
|
||||||
|
elif [ -f /usr/share/syslinux/vesamenu.c32 ]; then
|
||||||
|
cp /usr/share/syslinux/vesamenu.c32 /tmp/usb_install
|
||||||
|
else
|
||||||
|
echo "ERROR: Can't find syslinux's vesamenu.c32 on Host OS" >&2
|
||||||
|
fi
|
||||||
|
|
||||||
# sync disk
|
# sync disk
|
||||||
echo "syncing disk..."
|
echo "syncing disk..."
|
||||||
sync
|
sync
|
||||||
@ -250,7 +262,7 @@ EOF
|
|||||||
elif [ -f /usr/share/syslinux/mbr.bin ]; then
|
elif [ -f /usr/share/syslinux/mbr.bin ]; then
|
||||||
MBR="/usr/share/syslinux/mbr.bin" # example: fedora
|
MBR="/usr/share/syslinux/mbr.bin" # example: fedora
|
||||||
else
|
else
|
||||||
echo "Can't find syslinux's mbr.bin on Host OS"
|
echo "ERROR: Can't find syslinux's mbr.bin on Host OS" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$MBR" ]; then
|
if [ -n "$MBR" ]; then
|
||||||
|
@ -2926,7 +2926,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -2805,7 +2805,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3147,7 +3147,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3092,7 +3092,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3322,7 +3322,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3325,7 +3325,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3162,7 +3162,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3089,7 +3089,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3218,7 +3218,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3146,7 +3146,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -2869,7 +2869,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3215,7 +3215,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
@ -3142,7 +3142,7 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DELL_RBU is not set
|
# CONFIG_DELL_RBU is not set
|
||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
CONFIG_DMI_SYSFS=m
|
||||||
CONFIG_ISCSI_IBFT_FIND=y
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
CONFIG_ISCSI_IBFT=y
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user