mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
Merge branch 'master' into pvr
This commit is contained in:
commit
77eb52bae6
@ -1,12 +1,12 @@
|
|||||||
diff -Naur rtl8192se-0019.1207.2010.orig/HAL/rtl8192/rtl_dm.c rtl8192se-0019.1207.2010/HAL/rtl8192/rtl_dm.c
|
diff -Naur rtl8192se-0019.1207.2010/HAL/rtl8192/rtl_dm.c rtl8192se-0019.1207.2010.patch/HAL/rtl8192/rtl_dm.c
|
||||||
--- rtl8192se-0019.1207.2010.orig/HAL/rtl8192/rtl_dm.c 2010-12-07 04:53:18.000000000 +0100
|
--- rtl8192se-0019.1207.2010/HAL/rtl8192/rtl_dm.c 2010-12-07 04:53:18.000000000 +0100
|
||||||
+++ rtl8192se-0019.1207.2010/HAL/rtl8192/rtl_dm.c 2011-01-21 22:40:35.937060273 +0100
|
+++ rtl8192se-0019.1207.2010.patch/HAL/rtl8192/rtl_dm.c 2011-01-22 23:08:06.636503156 +0100
|
||||||
@@ -3834,7 +3834,7 @@
|
@@ -3834,7 +3834,7 @@
|
||||||
if(priv->pwrdown)
|
if(priv->pwrdown)
|
||||||
{
|
{
|
||||||
u1Tmp = read_nic_byte(dev, 0x06);
|
u1Tmp = read_nic_byte(dev, 0x06);
|
||||||
- printk("pwrdown, 0x6(BIT6)=%02x\n", u1Tmp);
|
- printk("pwrdown, 0x6(BIT6)=%02x\n", u1Tmp);
|
||||||
+// printk("pwrdown, 0x6(BIT6)=%02x\n", u1Tmp);
|
+// printk("pwrdown, 0x6(BIT6)=%02x\n", u1Tmp);
|
||||||
retval = (u1Tmp & BIT6) ? eRfOn: eRfOff;
|
retval = (u1Tmp & BIT6) ? eRfOn: eRfOff;
|
||||||
|
|
||||||
if(u1Tmp == 0xff)
|
if(u1Tmp == 0xff)
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
<settings>
|
||||||
|
<setting id="LCD_DRIVER" value="none" />
|
||||||
|
<setting id="NET_GATEWAY" value="" />
|
||||||
|
<setting id="NET_HOSTNAME" value="" />
|
||||||
|
<setting id="NET_IFACE" value="" />
|
||||||
|
<setting id="NET_IPADDRESS" value="" />
|
||||||
|
<setting id="NET_NAMESERVER" value="" />
|
||||||
|
<setting id="NET_NETWORK" value="LAN" />
|
||||||
|
<setting id="NET_PASSPHRASE" value="" />
|
||||||
|
<setting id="NET_SECURITY" value="NONE" />
|
||||||
|
<setting id="NET_SSID" value="" />
|
||||||
|
<setting id="SABNZBD_START" value="no" />
|
||||||
|
<setting id="SAMBA_START" value="yes" />
|
||||||
|
<setting id="TRANSMISSION_AUTH" value="yes" />
|
||||||
|
<setting id="TRANSMISSION_IP" value="127.0.0.1,192.168.0.*" />
|
||||||
|
<setting id="TRANSMISSION_PWD" value="openelec" />
|
||||||
|
<setting id="TRANSMISSION_START" value="no" />
|
||||||
|
<setting id="TRANSMISSION_USER" value="openelec" />
|
||||||
|
<setting id="TVHEADEND_START" value="no" />
|
||||||
|
<setting id="UPDATE_AUTO" value="manually" />
|
||||||
|
</settings>
|
@ -17,10 +17,18 @@
|
|||||||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
# SABnzbd.conf
|
|
||||||
|
|
||||||
# This configuration file allows you to setup 'SABnzbd' a
|
#
|
||||||
# Newsgroups downloader daemon
|
# copy userconfig and samples
|
||||||
|
#
|
||||||
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
# Start SABnzbd at boot ( yes / no )
|
progress "copy system config"
|
||||||
SABNZBD_START="no"
|
|
||||||
|
if [ -f /usr/share/xbmc/addons/os.openelec.settings/default_settings.xml ]; then
|
||||||
|
if [ ! -f $HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml ]; then
|
||||||
|
mkdir -p $HOME/.xbmc/userdata/addon_data/os.openelec.settings
|
||||||
|
cp /usr/share/xbmc/addons/os.openelec.settings/default_settings.xml \
|
||||||
|
$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml
|
||||||
|
fi
|
||||||
|
fi
|
14
packages/sysutils/lcdproc/config/lcd.conf → packages/mediacenter/xbmc-addon-settings/install
Normal file → Executable file
14
packages/sysutils/lcdproc/config/lcd.conf → packages/mediacenter/xbmc-addon-settings/install
Normal file → Executable file
@ -1,3 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
||||||
@ -17,13 +19,9 @@
|
|||||||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
# lcd.conf
|
|
||||||
|
|
||||||
# This configuration file allows you to enable a LCD/VFD driver
|
. config/options $1
|
||||||
|
|
||||||
# Valid options are "none" / "irtrans"
|
mkdir -p $INSTALL/usr/share/xbmc/addons/os.openelec.settings
|
||||||
|
cp -R $PKG_DIR/source/* $INSTALL/usr/share/xbmc/addons/os.openelec.settings
|
||||||
# none: No LCD/VFD hardware is installed (default)
|
cp -R $PKG_DIR/config/* $INSTALL/usr/share/xbmc/addons/os.openelec.settings
|
||||||
# irtrans: Use irtrans as LCD/VFD driver
|
|
||||||
|
|
||||||
LCD_DRIVER="none"
|
|
@ -17,9 +17,20 @@
|
|||||||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
# tv-server.conf
|
|
||||||
|
|
||||||
# This configuration file allows you to setup the TV-Server
|
PKG_NAME="xbmc-addon-settings"
|
||||||
|
PKG_VERSION="1"
|
||||||
|
PKG_REV="1"
|
||||||
|
PKG_ARCH="any"
|
||||||
|
PKG_LICENSE="GPL"
|
||||||
|
PKG_SITE="http://www.openelec.tv"
|
||||||
|
PKG_URL=""
|
||||||
|
PKG_DEPENDS=""
|
||||||
|
PKG_BUILD_DEPENDS="toolchain"
|
||||||
|
PKG_PRIORITY="optional"
|
||||||
|
PKG_SECTION="mediacenter"
|
||||||
|
PKG_SHORTDESC="xbmc-addon-settings: Settings dialog for OpenELEC"
|
||||||
|
PKG_LONGDESC="xbmc-addon-settings: is a settings dialog for OpenELEC"
|
||||||
|
PKG_IS_ADDON="no"
|
||||||
|
|
||||||
# Start TV.Headend at boot ( yes / no )
|
PKG_AUTORECONF="no"
|
||||||
TVHEADEND_START="no"
|
|
282
packages/mediacenter/xbmc-addon-settings/source/LICENSE.txt
Normal file
282
packages/mediacenter/xbmc-addon-settings/source/LICENSE.txt
Normal file
@ -0,0 +1,282 @@
|
|||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
-------------------------------------------------------------------------
|
16
packages/mediacenter/xbmc-addon-settings/source/addon.xml
Normal file
16
packages/mediacenter/xbmc-addon-settings/source/addon.xml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<addon id="os.openelec.settings"
|
||||||
|
name="OpenElec OS"
|
||||||
|
version="1.0.0"
|
||||||
|
provider-name="stombi">
|
||||||
|
<requires>
|
||||||
|
<import addon="xbmc.python" version="1.0"/>
|
||||||
|
</requires>
|
||||||
|
<extension point="xbmc.python.script"
|
||||||
|
library="default.py" />
|
||||||
|
<extension point="xbmc.addon.metadata">
|
||||||
|
<summary lang="en">OpenElec Settings</summary>
|
||||||
|
<description lang="en">OpenElec Settings</description>
|
||||||
|
<platform>all</platform>
|
||||||
|
</extension>
|
||||||
|
</addon>
|
20
packages/mediacenter/xbmc-addon-settings/source/default.py
Normal file
20
packages/mediacenter/xbmc-addon-settings/source/default.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import xbmcaddon
|
||||||
|
__scriptname__ = "OpenElecSettings"
|
||||||
|
__author__ = "stombi"
|
||||||
|
__url__ = ""
|
||||||
|
__svn_url__ = ""
|
||||||
|
__credits__ = ""
|
||||||
|
__version__ = "0.0.1"
|
||||||
|
__XBMC_Revision__ = "22240"
|
||||||
|
|
||||||
|
|
||||||
|
__settings__ = xbmcaddon.Addon(id='os.openelec.settings')
|
||||||
|
__language__ = __settings__.getLocalizedString
|
||||||
|
__cwd__ = __settings__.getAddonInfo('path')
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
__settings__.openSettings()
|
||||||
|
|
BIN
packages/mediacenter/xbmc-addon-settings/source/icon.png
Normal file
BIN
packages/mediacenter/xbmc-addon-settings/source/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<strings>
|
||||||
|
|
||||||
|
<!-- General -->
|
||||||
|
<string id="2000">Update</string>
|
||||||
|
<string id="2010">Update</string>
|
||||||
|
<string id="2011">Auto update</string>
|
||||||
|
|
||||||
|
<!-- Netwerk -->
|
||||||
|
<string id="2100">Netwerk</string>
|
||||||
|
<string id="2110">Standaard instellingen</string>
|
||||||
|
<string id="2111">Netwerknaam</string>
|
||||||
|
<string id="2120">Netwerk apparaat</string>
|
||||||
|
<string id="2121">Netwerk soort</string>
|
||||||
|
<string id="2122">Netwerk apparaat of MAC adres</string>
|
||||||
|
<string id="2130">IP instelling</string>
|
||||||
|
<string id="2131">Statisch IP adres</string>
|
||||||
|
<string id="2132">Netwerk gateway</string>
|
||||||
|
<string id="2133">DNS servers (gescheiden met ';')</string>
|
||||||
|
<string id="2150">WLAN Instellingen</string>
|
||||||
|
<string id="2151">WLAN SSID (router naam)</string>
|
||||||
|
<string id="2152">WLAN beveiliging</string>
|
||||||
|
<string id="2153">WLAN wachtwoord</string>
|
||||||
|
|
||||||
|
<!-- LCD -->
|
||||||
|
<string id="3100">LCD/VFD</string>
|
||||||
|
<string id="3110">Driver</string>
|
||||||
|
<string id="3111">Te gebruiken LCD Driver</string>
|
||||||
|
|
||||||
|
<!-- TV_SERVER -->
|
||||||
|
<string id="4100">TV/PVR</string>
|
||||||
|
<string id="4110">Configuratie</string>
|
||||||
|
<string id="4111">Start TV Server bij het opstarten</string>
|
||||||
|
|
||||||
|
<!-- SAMBA -->
|
||||||
|
<string id="5000">Samba</string>
|
||||||
|
<string id="5010">Configuratie</string>
|
||||||
|
<string id="5011">Start Samba bij het opstarten</string>
|
||||||
|
|
||||||
|
<!-- Transmission -->
|
||||||
|
<string id="5100">Transmission</string>
|
||||||
|
<string id="5110">Configuratie</string>
|
||||||
|
<string id="5111">Start Transmission bij het opstarten</string>
|
||||||
|
<string id="5120">Gebruikers instellingen</string>
|
||||||
|
<string id="5121">Gebruik verificatie</string>
|
||||||
|
<string id="5122">Gebruikersnaam</string>
|
||||||
|
<string id="5123">Wachtwoord</string>
|
||||||
|
<string id="5130">Netwerk instellingen</string>
|
||||||
|
<string id="5131">Toegestane IP adressen (gescheiden met een ",")</string>
|
||||||
|
|
||||||
|
<!-- SABnzbd -->
|
||||||
|
<string id="5200">SABnzbd</string>
|
||||||
|
<string id="5210">Configuratie</string>
|
||||||
|
<string id="5211">Start SABnzbd bij het opstarten</string>
|
||||||
|
|
||||||
|
</strings>
|
||||||
|
|
@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<strings>
|
||||||
|
|
||||||
|
<!-- General -->
|
||||||
|
<string id="2000">Update</string>
|
||||||
|
<string id="2010">Update</string>
|
||||||
|
<string id="2011">Auto update</string>
|
||||||
|
|
||||||
|
<!-- Network -->
|
||||||
|
<string id="2100">Network</string>
|
||||||
|
<string id="2110">General</string>
|
||||||
|
<string id="2111">Hostname</string>
|
||||||
|
<string id="2120">Network Adapter</string>
|
||||||
|
<string id="2121">Network Technology</string>
|
||||||
|
<string id="2122">Network name or MAC address</string>
|
||||||
|
<string id="2130">IP settings</string>
|
||||||
|
<string id="2131">Static IP address</string>
|
||||||
|
<string id="2132">Network gateway</string>
|
||||||
|
<string id="2133">DNS servers (semicolon seperated)</string>
|
||||||
|
<string id="2150">WLAN settings</string>
|
||||||
|
<string id="2151">WLAN SSID</string>
|
||||||
|
<string id="2152">WLAN Security</string>
|
||||||
|
<string id="2153">WLAN Passphrase</string>
|
||||||
|
|
||||||
|
<!-- LCD -->
|
||||||
|
<string id="3100">LCD/VFD</string>
|
||||||
|
<string id="3110">Driver</string>
|
||||||
|
<string id="3111">LCD Driver to use</string>
|
||||||
|
|
||||||
|
<!-- TV_SERVER -->
|
||||||
|
<string id="4100">TV/PVR</string>
|
||||||
|
<string id="4110">Boot</string>
|
||||||
|
<string id="4111">Start TV Server at boot</string>
|
||||||
|
|
||||||
|
<!-- SAMBA -->
|
||||||
|
<string id="5000">Samba</string>
|
||||||
|
<string id="5010">Boot</string>
|
||||||
|
<string id="5011">Start Samba at boot</string>
|
||||||
|
|
||||||
|
<!-- Transmission -->
|
||||||
|
<string id="5100">Transmission</string>
|
||||||
|
<string id="5110">Boot</string>
|
||||||
|
<string id="5111">Start Transmission at boot</string>
|
||||||
|
<string id="5120">User Settings</string>
|
||||||
|
<string id="5121">Use authentification</string>
|
||||||
|
<string id="5122">Username</string>
|
||||||
|
<string id="5123">Password</string>
|
||||||
|
<string id="5130">Network Settings</string>
|
||||||
|
<string id="5131">Allowed IP addresses (comma-delimited)</string>
|
||||||
|
|
||||||
|
<!-- SABnzbd -->
|
||||||
|
<string id="5200">SABnzbd</string>
|
||||||
|
<string id="5210">Boot</string>
|
||||||
|
<string id="5211">Start SABnzbd at boot</string>
|
||||||
|
|
||||||
|
</strings>
|
@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<strings>
|
||||||
|
|
||||||
|
<!-- General -->
|
||||||
|
<string id="2000">Mise à jour</string>
|
||||||
|
<string id="2010">Mise à jour</string>
|
||||||
|
<string id="2011">Mise à jour automatique</string>
|
||||||
|
|
||||||
|
<!-- Network -->
|
||||||
|
<string id="2100">Réseau</string>
|
||||||
|
<string id="2110">Général</string>
|
||||||
|
<string id="2111">Nom d'hote</string>
|
||||||
|
<string id="2120">Réseau</string>
|
||||||
|
<string id="2121">Interface réseau</string>
|
||||||
|
<string id="2122">Nom réseau ou adresse MAC</string>
|
||||||
|
<string id="2130">Paramètes IP</string>
|
||||||
|
<string id="2131">Adresse IP statique</string>
|
||||||
|
<string id="2132">Passerelle Réseau</string>
|
||||||
|
<string id="2133">Serveurs DNS (séparés par des virgules)</string>
|
||||||
|
<string id="2150">Paramètres WIFI</string>
|
||||||
|
<string id="2151">SSID</string>
|
||||||
|
<string id="2152">Sécurité WIFI</string>
|
||||||
|
<string id="2153">Passphrase</string>
|
||||||
|
|
||||||
|
<!-- LCD -->
|
||||||
|
<string id="3100">LCD/VFD</string>
|
||||||
|
<string id="3110">Pilote</string>
|
||||||
|
<string id="3111">Pilote LCD</string>
|
||||||
|
|
||||||
|
<!-- TV_SERVER -->
|
||||||
|
<string id="4100">TV/PVR</string>
|
||||||
|
<string id="4110">Démarrage</string>
|
||||||
|
<string id="4111">Lancer le serveur TV Server au démarrage</string>
|
||||||
|
|
||||||
|
<!-- SAMBA -->
|
||||||
|
<string id="5000">Samba</string>
|
||||||
|
<string id="5010">Démarrage</string>
|
||||||
|
<string id="5011">Lancer Samba au démarrage</string>
|
||||||
|
|
||||||
|
<!-- Transmission -->
|
||||||
|
<string id="5100">Transmission</string>
|
||||||
|
<string id="5110">Démarrage</string>
|
||||||
|
<string id="5111">Lancer Transmission au démarrage</string>
|
||||||
|
<string id="5120">Préférences utilisateur</string>
|
||||||
|
<string id="5121">Utiliser une authentification</string>
|
||||||
|
<string id="5122">Nom d'utilisateur</string>
|
||||||
|
<string id="5123">Mot de passe</string>
|
||||||
|
<string id="5130">Préférences réseau</string>
|
||||||
|
<string id="5131">Adresses IP autorisées (séparées par des virgules)</string>
|
||||||
|
|
||||||
|
<!-- SABnzbd -->
|
||||||
|
<string id="5200">SABnzbd</string>
|
||||||
|
<string id="5210">Démarrage</string>
|
||||||
|
<string id="5211">Lancer SABnzbd au démarrage</string>
|
||||||
|
|
||||||
|
</strings>
|
@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<settings>
|
||||||
|
|
||||||
|
<!-- UPDATE -->
|
||||||
|
<category label="2000">
|
||||||
|
<setting label="2010" type="lsep"/>
|
||||||
|
<setting id="UPDATE_AUTO" type="labelenum" label="2011" values="no|manually|auto" default="manually" />
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<!-- Network -->
|
||||||
|
<category label="2100">
|
||||||
|
<setting label="2110" type="lsep"/>
|
||||||
|
<setting id="NET_HOSTNAME" type="text" label="2111" default=""/>
|
||||||
|
<setting label="2120" type="lsep"/>
|
||||||
|
<setting id="NET_NETWORK" type="labelenum" label="2121" values="LAN|WLAN" default="LAN" />
|
||||||
|
<setting id="NET_IFACE" type="text" label="2122" default=""/>
|
||||||
|
<setting label="2130" type="lsep"/>
|
||||||
|
<setting id="NET_IPADDRESS" type="text" label="2131" default=""/>
|
||||||
|
<setting id="NET_GATEWAY" type="text" label="2132" default=""/>
|
||||||
|
<setting id="NET_NAMESERVER" type="text" label="2133" default=""/>
|
||||||
|
<setting label="2150" type="lsep"/>
|
||||||
|
<setting id="NET_SSID" type="text" label="2151" default=""/>
|
||||||
|
<setting id="NET_SECURITY" type="labelenum" label="2152" values="NONE|WEP|PSK" default="NONE" />
|
||||||
|
<setting id="NET_PASSPHRASE" type="text" option="hidden" label="2153" default="" />
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<!-- LCD -->
|
||||||
|
<category label="3100">
|
||||||
|
<setting label="3110" type="lsep"/>
|
||||||
|
<setting id="LCD_DRIVER" type="labelenum" label="3111" values="none|irtrans|imon" default="none" />
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<!-- TV-SERVER -->
|
||||||
|
<category label="4100">
|
||||||
|
<setting label="4110" type="lsep"/>
|
||||||
|
<setting id="TVHEADEND_START" type="labelenum" label="4111" values="yes|no" default="no" />
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<!-- SAMBA -->
|
||||||
|
<category label="5000">
|
||||||
|
<setting label="5010" type="lsep"/>
|
||||||
|
<setting id="SAMBA_START" type="labelenum" label="5011" values="yes|no" default="yes"/>
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<!-- Transmission -->
|
||||||
|
<category label="5100">
|
||||||
|
<setting label="5110" type="lsep"/>
|
||||||
|
<setting id="TRANSMISSION_START" type="labelenum" label="5111" values="yes|no" default="no"/>
|
||||||
|
|
||||||
|
<setting label="5120" type="lsep"/>
|
||||||
|
<setting id="TRANSMISSION_AUTH" type="labelenum" label="5121" values="yes|no" default="yes"/>
|
||||||
|
<setting id="TRANSMISSION_USER" type="text" label="5122" default="openelec"/>
|
||||||
|
<setting id="TRANSMISSION_PWD" type="text" label="5123" default="openelec"/>
|
||||||
|
|
||||||
|
<setting label="5130" type="lsep"/>
|
||||||
|
<setting id="TRANSMISSION_IP" type="text" label="5131" default=""/>
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<!-- SABnzbd -->
|
||||||
|
<category label="5200">
|
||||||
|
<setting label="5210" type="lsep"/>
|
||||||
|
<setting id="SABNZBD_START" type="labelenum" label="5211" values="yes|no" default="no"/>
|
||||||
|
</category>
|
||||||
|
</settings>
|
@ -25,7 +25,7 @@ PKG_ARCH="any"
|
|||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://www.xbmc.org"
|
PKG_SITE="http://www.xbmc.org"
|
||||||
PKG_URL="$OPENELEC_SRC/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
PKG_URL="$OPENELEC_SRC/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
PKG_DEPENDS="boost Python zlib bzip2 lzo pcre alsa-lib libass enca curl libssh rtmpdump dbus libXt libXtst libXmu libXrandr Mesa glew fontconfig fribidi $LIBJPEG libpng tiff freetype jasper libmad libsamplerate libogg libvorbis libcdio libmms libmodplug faad2 flac wavpack libmpeg2 libbluray SDL SDL_mixer SDL_image sqlite mysql samba alsa bc"
|
PKG_DEPENDS="boost Python zlib bzip2 lzo pcre alsa-lib libass enca curl libssh rtmpdump dbus libXt libXtst libXmu libXrandr Mesa glew fontconfig fribidi $LIBJPEG libpng tiff freetype jasper libmad libsamplerate libogg libvorbis libcdio libmms libmodplug faad2 flac wavpack libmpeg2 libbluray SDL SDL_mixer SDL_image sqlite mysql samba alsa bc xbmc-addon-settings"
|
||||||
PKG_BUILD_DEPENDS="toolchain boost Python zlib bzip2 lzo pcre alsa-lib libass enca curl libssh rtmpdump dbus libXt libXtst libXmu libXrandr Mesa glew fontconfig fribidi $LIBJPEG libpng tiff freetype jasper libmad libsamplerate libogg libvorbis libcdio libmms libmodplug faad2 flac wavpack libmpeg2 libbluray SDL SDL_mixer SDL_image sqlite mysql samba"
|
PKG_BUILD_DEPENDS="toolchain boost Python zlib bzip2 lzo pcre alsa-lib libass enca curl libssh rtmpdump dbus libXt libXtst libXmu libXrandr Mesa glew fontconfig fribidi $LIBJPEG libpng tiff freetype jasper libmad libsamplerate libogg libvorbis libcdio libmms libmodplug faad2 flac wavpack libmpeg2 libbluray SDL SDL_mixer SDL_image sqlite mysql samba"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
PKG_SECTION="mediacenter"
|
PKG_SECTION="mediacenter"
|
||||||
|
@ -22,9 +22,11 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
|
|
||||||
(
|
(
|
||||||
if [ -f /storage/.config/tv-server.conf ]; then
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
. /storage/.config/tv-server.conf
|
TVHEADEND_START=`grep TVHEADEND_START $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
|
||||||
if [ "$TVHEADEND_START" = "yes" ]; then
|
if [ "$TVHEADEND_START" = "yes" ]; then
|
||||||
progress "starting TV Server"
|
progress "starting TV Server"
|
||||||
|
@ -24,6 +24,3 @@
|
|||||||
|
|
||||||
mkdir -p $INSTALL/usr/bin
|
mkdir -p $INSTALL/usr/bin
|
||||||
cp -P $PKG_BUILD/build.Linux/tvheadend $INSTALL/usr/bin
|
cp -P $PKG_BUILD/build.Linux/tvheadend $INSTALL/usr/bin
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/tv-server.conf $INSTALL/usr/config
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<name replace-wildcards="yes">SABnzbd Server on %h (secured)</name>
|
<name replace-wildcards="yes">SABnzbd Server on %h (secured)</name>
|
||||||
<service>
|
<service>
|
||||||
<type>_http._tcp</type>
|
<type>_http._tcp</type>
|
||||||
<port>9090</port>
|
<port>8081</port>
|
||||||
<txt-record>path=/index.html</txt-record>
|
<txt-record>path=/index.html</txt-record>
|
||||||
</service>
|
</service>
|
||||||
</service-group>
|
</service-group>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
__version__ = 18
|
__version__ = 18
|
||||||
[misc]
|
[misc]
|
||||||
queue_complete = ""
|
queue_complete = ""
|
||||||
https_port = 9090
|
https_port = 8081
|
||||||
folder_rename = 1
|
folder_rename = 1
|
||||||
allow_64bit_tools = 1
|
allow_64bit_tools = 1
|
||||||
rss_rate = 60
|
rss_rate = 60
|
||||||
|
@ -22,9 +22,11 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
|
|
||||||
(
|
(
|
||||||
if [ -f /storage/.config/SABnzbd.conf ]; then
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
. /storage/.config/SABnzbd.conf
|
SABNZBD_START=`grep SABNZBD_START $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
|
||||||
if [ "$SABNZBD_START" = "yes" ]; then
|
if [ "$SABNZBD_START" = "yes" ]; then
|
||||||
|
|
||||||
|
@ -24,11 +24,6 @@
|
|||||||
|
|
||||||
mkdir -p $INSTALL/usr/lib/$1
|
mkdir -p $INSTALL/usr/lib/$1
|
||||||
cp -PR $PKG_BUILD/* $INSTALL/usr/lib/$1
|
cp -PR $PKG_BUILD/* $INSTALL/usr/lib/$1
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/SABnzbd.conf $INSTALL/usr/config
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/sabnzbd.config $INSTALL/usr/lib/$1
|
cp $PKG_DIR/config/sabnzbd.config $INSTALL/usr/lib/$1
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc/avahi/services
|
mkdir -p $INSTALL/etc/avahi/services
|
||||||
|
@ -23,7 +23,10 @@
|
|||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
(
|
(
|
||||||
|
wait_for_network
|
||||||
|
|
||||||
progress "Starting Avahi Daemon"
|
progress "Starting Avahi Daemon"
|
||||||
|
|
||||||
mkdir -p /var/run/avahi-daemon
|
mkdir -p /var/run/avahi-daemon
|
||||||
avahi-daemon -D
|
avahi-daemon -D
|
||||||
)&
|
)&
|
||||||
|
@ -46,7 +46,7 @@ ac_cv_path_WPASUPPLICANT="/sbin/wpa_supplicant" \
|
|||||||
--enable-dnsproxy=builtin \
|
--enable-dnsproxy=builtin \
|
||||||
--disable-pacrunner \
|
--disable-pacrunner \
|
||||||
--disable-google \
|
--disable-google \
|
||||||
--disable-meego \
|
--enable-meego=builtin \
|
||||||
--disable-iwmx \
|
--disable-iwmx \
|
||||||
--disable-iospm \
|
--disable-iospm \
|
||||||
--enable-ntpd=builtin \
|
--enable-ntpd=builtin \
|
||||||
|
@ -27,8 +27,22 @@
|
|||||||
# WLAN: (WPA2): SSID, NAME, PASSPHRASE, tech: wifi mode: _managed_psk
|
# WLAN: (WPA2): SSID, NAME, PASSPHRASE, tech: wifi mode: _managed_psk
|
||||||
# WLAN: (WEP): SSID, NAME, PASSPHRASE, tect: wifi mode: _managed_wep
|
# WLAN: (WEP): SSID, NAME, PASSPHRASE, tect: wifi mode: _managed_wep
|
||||||
|
|
||||||
[ -f $HOME/.config/network.conf ] && . $HOME/.config/network.conf
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
|
|
||||||
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
|
HOSTNAME=`grep NET_HOSTNAME $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
NETWORK=`grep NET_NETWORK $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
IFACE=`grep NET_IFACE $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
IPADDRESS=`grep NET_IPADDRESS $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
GATEWAY=`grep NET_GATEWAY $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
NAMESERVER=`grep NET_NAMESERVER $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
SSID=`grep NET_SSID $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
SECURITY=`grep NET_SECURITY $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
PASSPHRASE=`grep NET_PASSPHRASE $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
fi
|
||||||
|
|
||||||
[ -z "$HOSTNAME" ] && HOSTNAME="openelec"
|
[ -z "$HOSTNAME" ] && HOSTNAME="openelec"
|
||||||
|
[ -z "$IFACE" ] && IFACE="eth0"
|
||||||
|
|
||||||
# setup hostname
|
# setup hostname
|
||||||
progress "Setup hostname"
|
progress "Setup hostname"
|
||||||
@ -53,7 +67,6 @@
|
|||||||
# NETWORK: ( LAN / WLAN )
|
# NETWORK: ( LAN / WLAN )
|
||||||
usleep 2000000 # TODO: wait on udev to load all drivers
|
usleep 2000000 # TODO: wait on udev to load all drivers
|
||||||
|
|
||||||
[ -z "$IFACE" ] && IFACE="eth0"
|
|
||||||
[ -f /sys/class/net/$IFACE/address ] && \
|
[ -f /sys/class/net/$IFACE/address ] && \
|
||||||
IFACE=`cat /sys/class/net/$IFACE/address | sed 's/://g'`
|
IFACE=`cat /sys/class/net/$IFACE/address | sed 's/://g'`
|
||||||
|
|
||||||
|
@ -31,14 +31,10 @@ mkdir -p $INSTALL/etc
|
|||||||
mkdir -p $INSTALL/etc/dbus-1/system.d
|
mkdir -p $INSTALL/etc/dbus-1/system.d
|
||||||
cp $PKG_BUILD/src/connman.conf $INSTALL/etc/dbus-1/system.d
|
cp $PKG_BUILD/src/connman.conf $INSTALL/etc/dbus-1/system.d
|
||||||
|
|
||||||
#mkdir -p $INSTALL/usr/lib/connman/plugins
|
|
||||||
# cp $PKG_BUILD/plugins/.libs/*.so $INSTALL/usr/lib/connman/plugins
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/sbin
|
mkdir -p $INSTALL/usr/sbin
|
||||||
cp -P $PKG_BUILD/src/connmand $INSTALL/usr/sbin
|
cp -P $PKG_BUILD/src/connmand $INSTALL/usr/sbin
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/config
|
mkdir -p $INSTALL/usr/config
|
||||||
cp $PKG_DIR/config/network.conf $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/hosts.conf $INSTALL/usr/config
|
cp $PKG_DIR/config/hosts.conf $INSTALL/usr/config
|
||||||
|
|
||||||
if [ "$DEVTOOLS" = yes ]; then
|
if [ "$DEVTOOLS" = yes ]; then
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PKG_NAME="libssh"
|
PKG_NAME="libssh"
|
||||||
PKG_VERSION="0.4.7"
|
PKG_VERSION="0.4.8"
|
||||||
PKG_REV="1"
|
PKG_REV="1"
|
||||||
PKG_ARCH="any"
|
PKG_ARCH="any"
|
||||||
PKG_LICENSE="OpenSource"
|
PKG_LICENSE="OpenSource"
|
||||||
|
@ -82,6 +82,7 @@ make bin/umount.cifs
|
|||||||
|
|
||||||
if [ "$SAMBA_SERVER" = yes ]; then
|
if [ "$SAMBA_SERVER" = yes ]; then
|
||||||
make bin/smbd
|
make bin/smbd
|
||||||
|
make bin/nmbd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p $SYSROOT_PREFIX/usr/lib
|
mkdir -p $SYSROOT_PREFIX/usr/lib
|
||||||
|
@ -34,6 +34,7 @@ fi
|
|||||||
if [ "$SAMBA_SERVER" = "yes" ]; then
|
if [ "$SAMBA_SERVER" = "yes" ]; then
|
||||||
mkdir -p $INSTALL/usr/bin
|
mkdir -p $INSTALL/usr/bin
|
||||||
cp $PKG_BUILD/source3/bin/smbd $INSTALL/usr/bin
|
cp $PKG_BUILD/source3/bin/smbd $INSTALL/usr/bin
|
||||||
|
cp $PKG_BUILD/source3/bin/nmbd $INSTALL/usr/bin
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc/samba
|
mkdir -p $INSTALL/etc/samba
|
||||||
cp $PKG_DIR/config/smb.conf $INSTALL/etc/samba
|
cp $PKG_DIR/config/smb.conf $INSTALL/etc/samba
|
||||||
|
@ -22,11 +22,13 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
(
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
if [ -f /storage/.config/network.conf ]; then
|
|
||||||
. /storage/.config/network.conf
|
|
||||||
|
|
||||||
if [ ! "$SAMBA_START" = "no" ]; then
|
(
|
||||||
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
|
SAMBA_START=`grep SAMBA_START $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
|
||||||
|
if [ "$SAMBA_START" = "yes" ]; then
|
||||||
|
|
||||||
wait_for_network
|
wait_for_network
|
||||||
|
|
||||||
@ -43,6 +45,7 @@
|
|||||||
|
|
||||||
mkdir -p /var/log/samba
|
mkdir -p /var/log/samba
|
||||||
smbd --daemon $SMB_ARG > /dev/null 2>&1
|
smbd --daemon $SMB_ARG > /dev/null 2>&1
|
||||||
|
nmbd --daemon $SMB_ARG > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
)&
|
)&
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# This Program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This Program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
|
||||||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
|
||||||
################################################################################
|
|
||||||
# transmission.conf
|
|
||||||
|
|
||||||
# This configuration file allows you to setup 'Transmission' a
|
|
||||||
# BitTorrent daemon
|
|
||||||
|
|
||||||
# Start transmission at boot ( yes / no )
|
|
||||||
TRANSMISSION_START="no"
|
|
||||||
|
|
||||||
# Allow RPC access to a comma-delimited whitelist of IP addresses.
|
|
||||||
# Wildcards can be specified in an address by using '*'. Default:
|
|
||||||
# "127.0.0.1" Example: "127.0.0.*,192.168.1.*"
|
|
||||||
TRANSMISSION_IP="127.0.0.1,192.168.0.*"
|
|
||||||
|
|
||||||
# Use authentication for the web frontend ( yes / no )
|
|
||||||
TRANSMISSION_AUTH="yes"
|
|
||||||
|
|
||||||
# Username for logging to the webfrontend
|
|
||||||
TRANSMISSION_USER="openelec"
|
|
||||||
|
|
||||||
# password for logging to the webfrontend
|
|
||||||
TRANSMISSION_PWD="openelec"
|
|
@ -22,11 +22,17 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
(
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
if [ -f /storage/.config/transmission.conf ]; then
|
|
||||||
. /storage/.config/transmission.conf
|
|
||||||
|
|
||||||
if [ "$TRANSMISSION_START" = "yes" ]; then
|
(
|
||||||
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
|
TRANSMISSION_START=`grep TRANSMISSION_START $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
TRANSMISSION_AUTH=`grep TRANSMISSION_AUTH $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
TRANSMISSION_USER=`grep TRANSMISSION_USER $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
TRANSMISSION_PWD=`grep TRANSMISSION_PWD $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
TRANSMISSION_IP=`grep TRANSMISSION_IP $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
|
||||||
|
if [ "$TRANSMISSION_START" = "yes" ]; then
|
||||||
|
|
||||||
wait_for_network
|
wait_for_network
|
||||||
|
|
||||||
|
@ -29,6 +29,3 @@ mkdir -p $INSTALL/usr/share/transmission/web
|
|||||||
cp -R $PKG_BUILD/web/* $INSTALL/usr/share/transmission/web
|
cp -R $PKG_BUILD/web/* $INSTALL/usr/share/transmission/web
|
||||||
find $INSTALL/usr/share/transmission/web -name "Makefile*" -exec rm -rf {} ";"
|
find $INSTALL/usr/share/transmission/web -name "Makefile*" -exec rm -rf {} ";"
|
||||||
rm -rf $INSTALL/usr/share/transmission/web/LICENSE
|
rm -rf $INSTALL/usr/share/transmission/web/LICENSE
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/transmission.conf $INSTALL/usr/config
|
|
||||||
|
@ -22,9 +22,11 @@
|
|||||||
#
|
#
|
||||||
# runlevels: openelec, textmode
|
# runlevels: openelec, textmode
|
||||||
|
|
||||||
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
|
|
||||||
(
|
(
|
||||||
if [ -f /storage/.config/lcd.conf ]; then
|
if [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
. /storage/.config/lcd.conf
|
LCD_DRIVER=`grep LCD_DRIVER $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
|
||||||
if [ ! "$LCD_DRIVER" = none ]; then
|
if [ ! "$LCD_DRIVER" = none ]; then
|
||||||
|
|
||||||
|
@ -31,8 +31,5 @@ mkdir -p $INSTALL/usr/sbin
|
|||||||
mkdir -p $INSTALL/usr/lib/lcdproc
|
mkdir -p $INSTALL/usr/lib/lcdproc
|
||||||
cp $PKG_BUILD/server/drivers/*.so $INSTALL/usr/lib/lcdproc
|
cp $PKG_BUILD/server/drivers/*.so $INSTALL/usr/lib/lcdproc
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/lcd.conf $INSTALL/usr/config
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc
|
mkdir -p $INSTALL/etc
|
||||||
cp $PKG_BUILD/LCDd.conf $INSTALL/etc
|
cp $PKG_BUILD/LCDd.conf $INSTALL/etc
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# This Program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This Program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
|
||||||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
|
||||||
################################################################################
|
|
||||||
# update.conf
|
|
||||||
|
|
||||||
# This configuration file allows you to setup the update feature of
|
|
||||||
# openelec
|
|
||||||
|
|
||||||
# The update features retain all custom settings and files from both
|
|
||||||
# the openelec base system and xbmc
|
|
||||||
|
|
||||||
# Options are "no" / "manually" / "auto" )
|
|
||||||
|
|
||||||
# no: -Disable updates
|
|
||||||
# -No pop-up information about available updates
|
|
||||||
# -No automatic downloadling
|
|
||||||
|
|
||||||
# manually: Manual updates
|
|
||||||
# -Shows pop-up information about available updates
|
|
||||||
# -No automatic downloading
|
|
||||||
# -To update: Download the required openelec version, extract
|
|
||||||
# and copy the two files "SYSTEM" and "KERNEL" to the "Update"
|
|
||||||
# share (or /storage/.update)
|
|
||||||
# Reboot the system and the update will install automatically
|
|
||||||
|
|
||||||
# auto: Automatic updates
|
|
||||||
# -Shows pop-up information about available updates
|
|
||||||
# -New updates will be automatically downloaded
|
|
||||||
# -The system will notify you that a reboot is all that's
|
|
||||||
# required to complete the upgrade
|
|
||||||
|
|
||||||
AUTOUPDATE=manually
|
|
@ -46,9 +46,6 @@ mkdir -p $INSTALL/etc
|
|||||||
|
|
||||||
if [ -f $PROJECT_DIR/$PROJECT/autoupdate/update.conf ]; then
|
if [ -f $PROJECT_DIR/$PROJECT/autoupdate/update.conf ]; then
|
||||||
cp $PROJECT_DIR/$PROJECT/autoupdate/update.conf $INSTALL/etc
|
cp $PROJECT_DIR/$PROJECT/autoupdate/update.conf $INSTALL/etc
|
||||||
else
|
|
||||||
mkdir -p $INSTALL/usr/config
|
|
||||||
cp $PKG_DIR/config/update.conf $INSTALL/usr/config
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc/crontabs
|
mkdir -p $INSTALL/etc/crontabs
|
||||||
|
@ -20,10 +20,24 @@
|
|||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
[ -f /etc/update.conf ] && . /etc/update.conf
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
[ -f /storage/.config/update.conf ] && . /storage/.config/update.conf
|
|
||||||
[ -f /etc/repo.conf ] && . /etc/repo.conf || exit 0
|
if [ -f /etc/update.conf ]; then
|
||||||
[ -n "$KEYFILE" ] && SCP_ARG="-i $KEYFILE"
|
. /etc/update.conf
|
||||||
|
elif [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
|
AUTOUPDATE=`grep UPDATE_AUTO $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /etc/repo.conf ]; then
|
||||||
|
. /etc/repo.conf
|
||||||
|
if [ -n "$KEYFILE" ]; then
|
||||||
|
SCP_ARG="-i $KEYFILE"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
download () {
|
download () {
|
||||||
case "$DL_METHOD" in
|
case "$DL_METHOD" in
|
||||||
@ -74,7 +88,7 @@ if [ ! -f /var/lock/update.lock ]; then
|
|||||||
elif [ "$AUTOUPDATE" = "auto" ]; then
|
elif [ "$AUTOUPDATE" = "auto" ]; then
|
||||||
|
|
||||||
# show a message if a new version is avaible
|
# show a message if a new version is avaible
|
||||||
send_message "New update avaible: r$NEW_VERSION - downloading and extract the new version..."
|
send_message "New update avaible: r$NEW_VERSION - downloading and extracting the new version..."
|
||||||
|
|
||||||
# locking autoupdate
|
# locking autoupdate
|
||||||
touch /var/lock/update.lock
|
touch /var/lock/update.lock
|
||||||
|
@ -20,10 +20,24 @@
|
|||||||
# http://www.gnu.org/copyleft/gpl.html
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
[ -f /etc/update.conf ] && . /etc/update.conf
|
OPENELEC_SETTINGS="$HOME/.xbmc/userdata/addon_data/os.openelec.settings/settings.xml"
|
||||||
[ -f /storage/.config/update.conf ] && . /storage/.config/update.conf
|
|
||||||
[ -f /etc/repo.conf ] && . /etc/repo.conf || exit 0
|
if [ -f /etc/update.conf ]; then
|
||||||
[ -n "$KEYFILE" ] && SCP_ARG="-i $KEYFILE"
|
. /etc/update.conf
|
||||||
|
elif [ -f "$OPENELEC_SETTINGS" ]; then
|
||||||
|
AUTOUPDATE=`grep UPDATE_AUTO $OPENELEC_SETTINGS | awk '{print $3 }' | sed -e "s,value=,," -e "s,\",,g"`
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /etc/repo.conf ]; then
|
||||||
|
. /etc/repo.conf
|
||||||
|
if [ -n "$KEYFILE" ]; then
|
||||||
|
SCP_ARG="-i $KEYFILE"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
download () {
|
download () {
|
||||||
case "$DL_METHOD" in
|
case "$DL_METHOD" in
|
||||||
@ -81,7 +95,7 @@ if [ ! -f /var/lock/update.lock ]; then
|
|||||||
elif [ "$AUTOUPDATE" = "auto" ]; then
|
elif [ "$AUTOUPDATE" = "auto" ]; then
|
||||||
|
|
||||||
# show a message if a new version is avaible
|
# show a message if a new version is avaible
|
||||||
send_message "New update avaible: $NEW_VERSION - downloading and extract the new version..."
|
send_message "New update avaible: $NEW_VERSION - downloading and extracting the new version..."
|
||||||
|
|
||||||
# locking autoupdate
|
# locking autoupdate
|
||||||
touch /var/lock/update.lock
|
touch /var/lock/update.lock
|
||||||
|
Loading…
x
Reference in New Issue
Block a user