mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-02 07:27:49 +00:00
indicator-network: add network config file
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
cb6da268e3
commit
dcd8f5f110
21
packages/network/indicator-network/config/network.conf
Normal file
21
packages/network/indicator-network/config/network.conf
Normal file
@ -0,0 +1,21 @@
|
||||
# Setup Network
|
||||
|
||||
# Hostname
|
||||
HOSTNAME="openelec"
|
||||
|
||||
# Network type ( wired, wlan, 3g )
|
||||
# Note: only "wired" is still supported
|
||||
NETWORK_TYPE="wired"
|
||||
|
||||
# Connection type ( dhcp, static )
|
||||
CONNECTION="dhcp"
|
||||
|
||||
# IP settings (only with static connection type)
|
||||
# IP address
|
||||
IPADDRESS="192.168.0.12"
|
||||
|
||||
# Netmask
|
||||
NETMASK="255.255.255.0"
|
||||
|
||||
# Gateway
|
||||
GATEWAY="192.168.0.1"
|
@ -5,6 +5,10 @@
|
||||
$SCRIPTS/install Python
|
||||
$SCRIPTS/install pygobject
|
||||
$SCRIPTS/install dbus-python
|
||||
$SCRIPTS/install connman
|
||||
|
||||
mkdir -p $INSTALL/usr/bin
|
||||
cp $PKG_BUILD/scripts/cmcc $INSTALL/usr/bin
|
||||
cp $PKG_BUILD/scripts/cmcc $INSTALL/usr/bin
|
||||
|
||||
mkdir -p $INSTALL/usr/config
|
||||
cp $PKG_DIR/config/network.conf $INSTALL/usr/config
|
||||
|
Loading…
x
Reference in New Issue
Block a user