indicator-network: add network config file

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-09-23 05:31:57 +02:00
parent cb6da268e3
commit dcd8f5f110
2 changed files with 26 additions and 1 deletions

View 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"

View File

@ -5,6 +5,10 @@
$SCRIPTS/install Python $SCRIPTS/install Python
$SCRIPTS/install pygobject $SCRIPTS/install pygobject
$SCRIPTS/install dbus-python $SCRIPTS/install dbus-python
$SCRIPTS/install connman
mkdir -p $INSTALL/usr/bin 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