mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
Revert "Merge branch 'master' of ssh://openelec.git.sourceforge.net/gitroot/openelec/openelec"
This reverts commit 81b539ddc1162ea9413af7f9bd78e03380d2da52, reversing changes made to 4871a0b10c8b8d28eefbcd993d5121f789a22703.
This commit is contained in:
parent
7adf9dd797
commit
a2be40a66a
@ -1,69 +0,0 @@
|
|||||||
pcm.!default {
|
|
||||||
type plug
|
|
||||||
slave {
|
|
||||||
pcm "both"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pcm.both {
|
|
||||||
type route
|
|
||||||
slave {
|
|
||||||
pcm multi
|
|
||||||
channels 6
|
|
||||||
}
|
|
||||||
ttable.0.0 1.0
|
|
||||||
ttable.1.1 1.0
|
|
||||||
ttable.0.2 1.0
|
|
||||||
ttable.1.3 1.0
|
|
||||||
ttable.0.4 1.0
|
|
||||||
ttable.1.5 1.0
|
|
||||||
}
|
|
||||||
|
|
||||||
pcm.multi {
|
|
||||||
type multi
|
|
||||||
slaves.a {
|
|
||||||
pcm "tv"
|
|
||||||
channels 2
|
|
||||||
}
|
|
||||||
slaves.b {
|
|
||||||
pcm "receiver"
|
|
||||||
channels 2
|
|
||||||
}
|
|
||||||
slaves.c {
|
|
||||||
pcm "analog"
|
|
||||||
channels 2
|
|
||||||
}
|
|
||||||
bindings.0.slave a
|
|
||||||
bindings.0.channel 0
|
|
||||||
bindings.1.slave a
|
|
||||||
bindings.1.channel 1
|
|
||||||
bindings.2.slave b
|
|
||||||
bindings.2.channel 0
|
|
||||||
bindings.3.slave b
|
|
||||||
bindings.3.channel 1
|
|
||||||
bindings.4.slave c
|
|
||||||
bindings.4.channel 0
|
|
||||||
bindings.5.slave c
|
|
||||||
bindings.5.channel 1
|
|
||||||
}
|
|
||||||
|
|
||||||
pcm.tv {
|
|
||||||
type hw
|
|
||||||
card 0
|
|
||||||
device 3
|
|
||||||
channels 2
|
|
||||||
}
|
|
||||||
|
|
||||||
pcm.receiver {
|
|
||||||
type hw
|
|
||||||
card 0
|
|
||||||
device 1
|
|
||||||
channels 2
|
|
||||||
}
|
|
||||||
|
|
||||||
pcm.analog {
|
|
||||||
type hw
|
|
||||||
card 0
|
|
||||||
device 0
|
|
||||||
channels 2
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -1,169 +0,0 @@
|
|||||||
# Welcome Message for e.g. SSH Server (up to 5 Lines)
|
|
||||||
GREATING0="#######################################################"
|
|
||||||
GREATING1="# Welcome to OpenELEC - the powerfull Mediacenter4you #"
|
|
||||||
GREATING2="# .......... visit http://www.openelec.tv ........... #"
|
|
||||||
GREATING3="#######################################################"
|
|
||||||
GREATING4=""
|
|
||||||
|
|
||||||
# Hostname for target system (openelec)
|
|
||||||
HOSTNAME="openelec"
|
|
||||||
|
|
||||||
# Root password to integrate in the target system
|
|
||||||
ROOT_PASSWORD="openelec"
|
|
||||||
|
|
||||||
# User to integrate in the target system
|
|
||||||
USER_NAME="openelec"
|
|
||||||
|
|
||||||
# User group to integrate in the target system
|
|
||||||
USER_GROUP="openelec"
|
|
||||||
|
|
||||||
# User password to integrate in the target system
|
|
||||||
USER_PASSWORD="openelec"
|
|
||||||
|
|
||||||
# The TARGET_CPU variable controls which processor should be targeted for
|
|
||||||
# generated code.
|
|
||||||
case $TARGET_ARCH in
|
|
||||||
i386)
|
|
||||||
# (AMD CPUs) k8 k8-sse3 opteron opteron-sse3 athlon64 athlon64-sse3
|
|
||||||
# athlon-fx athlon-mp athlon-xp athlon-4
|
|
||||||
# athlon-tbird athlon k6-3 k6-2 k6 geode
|
|
||||||
# (Intel CPUs) atom core2 nocona prescott pentium4[m] pentium3[m]
|
|
||||||
# pentium-m pentium2 pentiumpro pentium-mmx pentium
|
|
||||||
# i686 i586 i486 i386
|
|
||||||
# (VIA CPUs) c3 c3-2
|
|
||||||
#
|
|
||||||
TARGET_CPU="atom"
|
|
||||||
;;
|
|
||||||
|
|
||||||
x86_64)
|
|
||||||
# (AMD CPUs) k8 k8-sse3 opteron opteron-sse3 athlon64 athlon64-sse3
|
|
||||||
# athlon-fx amdfam10 barcelona
|
|
||||||
# (Intel CPUs) atom core2 nocona
|
|
||||||
#
|
|
||||||
TARGET_CPU="atom"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Build optimizations (size/speed)
|
|
||||||
OPTIMIZATIONS="speed"
|
|
||||||
|
|
||||||
# Project CFLAGS
|
|
||||||
PROJECT_CFLAGS=""
|
|
||||||
|
|
||||||
# Timezone to use (empty disables timezone support)
|
|
||||||
# use a TZ environment string
|
|
||||||
TIMEZONE=""
|
|
||||||
|
|
||||||
# Mediacenter to use (xbmc / no)
|
|
||||||
MEDIACENTER="xbmc"
|
|
||||||
|
|
||||||
# Skins to install (Vision2)
|
|
||||||
SKINS="Vision2"
|
|
||||||
|
|
||||||
# Plugins for XBMC to install (SABnzbd)
|
|
||||||
# Space separated list is supported,
|
|
||||||
# e.g. XBMC_PLUGINS="SABnzbd"
|
|
||||||
XBMC_PLUGINS=""
|
|
||||||
|
|
||||||
# build and install with non-free support
|
|
||||||
# (RAR compression support in XBMC) (yes / no)
|
|
||||||
NONFREE_SUPPORT="no"
|
|
||||||
|
|
||||||
# build and install with DVDCSS support
|
|
||||||
# (DVD decryption support in XBMC) (yes / no)
|
|
||||||
DVDCSS_SUPPORT="no"
|
|
||||||
|
|
||||||
# build and install with FAAC support in XBMC
|
|
||||||
# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no)
|
|
||||||
FAAC_SUPPORT="no"
|
|
||||||
|
|
||||||
# build with network support (yes / no)
|
|
||||||
NETWORK="yes"
|
|
||||||
|
|
||||||
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
|
||||||
PPP_DAEMON="no"
|
|
||||||
|
|
||||||
# build and install with XBMC webfrontend (yes / no)
|
|
||||||
WEBSERVER="no"
|
|
||||||
|
|
||||||
# build and install Avahi (Zeroconf) daemon (yes / no)
|
|
||||||
AVAHI_DAEMON="no"
|
|
||||||
|
|
||||||
# build and install Samba Server (yes / no)
|
|
||||||
SAMBA_SERVER="no"
|
|
||||||
|
|
||||||
# build and install Transmission BitTorrent daemon (yes / no)
|
|
||||||
TRANSMISSION="no"
|
|
||||||
|
|
||||||
# todo (need for vdr?)
|
|
||||||
SERVICES="yes"
|
|
||||||
|
|
||||||
# build and install diskmounter service (udisks)
|
|
||||||
# this service provide auto mounting support for external drives
|
|
||||||
# in the mediacenter also automount internally drives at boottime (yes / no)
|
|
||||||
UDISKS="no"
|
|
||||||
|
|
||||||
# build and install powermanagement support (upower) (yes / no)
|
|
||||||
UPOWER="no"
|
|
||||||
|
|
||||||
# Displayserver to use (xorg-server / no)
|
|
||||||
DISPLAYSERVER="xorg-server"
|
|
||||||
|
|
||||||
# Graphic drivers to use (all / i915,i965,r200,r300,r600,radeon,nvidia)
|
|
||||||
# Space separated list is supported,
|
|
||||||
# e.g. GRAPHIC_DRIVERS="i915 i965 radeon nvidia"
|
|
||||||
GRAPHIC_DRIVERS="nvidia"
|
|
||||||
|
|
||||||
# Use VDPAU video acceleration (needs nVidia driver and a supported card)
|
|
||||||
VDPAU="yes"
|
|
||||||
|
|
||||||
# Use VAAPI video acceleration (needs intel i965 driver and a supported card)
|
|
||||||
VAAPI="no"
|
|
||||||
|
|
||||||
# Use Broadcom CrystalHD Decoder Card for video acceleration
|
|
||||||
# (needs Kernelsupport for Broadcom Decoder Card and a supported card)
|
|
||||||
CRYSTALHD="no"
|
|
||||||
|
|
||||||
# build and install remote support (yes / no)
|
|
||||||
REMOTE_SUPPORT="no"
|
|
||||||
|
|
||||||
# Remote to Use (pctv/logitech/hauppauge/realmagic/creative/leadtek/
|
|
||||||
# leadtek-pvr2000/RM-S6/RX-V850/animax/askey/avermedia/packard_bell/atiusb/
|
|
||||||
# atiusb2/LG/D-10/digimatrix/mceusb/streamzap/cinergy1400/nova-s-plus/twinhan/
|
|
||||||
# tosh-vt76f/flytv-prime/Medion-X10/imonknob/ultrax/dvico/MCE-X10)
|
|
||||||
REMOTE="mceusb"
|
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,CwLnx,ea65,
|
|
||||||
# EyeboxOne,g15,glcdlib,glk,hd44780,i2500vfd,icp_a106,imon,imonlcd,
|
|
||||||
# IOWarrior,irman,irtrans,joy,lb216,lcdm001,lcterm,lirc,lis,
|
|
||||||
# MD8800,ms6931,mtc_s16209x,MtxOrb,mx5000,NoritakeVFD,picolcd,
|
|
||||||
# pyramid,sed1330,sed1520,serialPOS,serialVFD,shuttleVFD,sli,
|
|
||||||
# stv5730,SureElec,t6963,text,tyan,ula200,xosd
|
|
||||||
# 'all' compiles all drivers;
|
|
||||||
# 'all,!xxx,!yyy' de-selects previously selected drivers
|
|
||||||
# "none" for disable LCD support
|
|
||||||
LCD_DRIVER="none"
|
|
||||||
|
|
||||||
# Firmware to use (iwl1000, iwl3945, iwl4965, iwl5000, iwl5150, iwl6000)
|
|
||||||
# Space separated list is supported,
|
|
||||||
# e.g. FIRMWARE="iwl3945 iwl5000"
|
|
||||||
FIRMWARE=""
|
|
||||||
|
|
||||||
# build with lm_sensors hardware monitoring support (yes / no)
|
|
||||||
SENSOR_SUPPORT="yes"
|
|
||||||
|
|
||||||
# build with automatic update support (yes / no)
|
|
||||||
UPDATE_SUPPORT="yes"
|
|
||||||
|
|
||||||
# build with games support (yes / no)
|
|
||||||
GAMES="no"
|
|
||||||
|
|
||||||
# build with emulator support (yes / no)
|
|
||||||
EMULATORS="no"
|
|
||||||
|
|
||||||
# Testpackages for development (yes / no)
|
|
||||||
TESTING="no"
|
|
||||||
|
|
||||||
# Coreboot support (yes / no)
|
|
||||||
COREBOOT="no"
|
|
Loading…
x
Reference in New Issue
Block a user