Simple Geckito Network Setup
============================

* Enable sshd

  Just create a file called "sshd" here

* Enable network 

  any ifup script can be placed in /boot. It will get copyied into
  the file system during boot time.

  LAN networks are configured via dhcp by default.

  But they can get configured as static interfaces manually, or 
  wireless networks can get configured via this mechanic.

  For example, place a file called ifcfg-wlan0 with the following lines
  for an usual PSK network setup:

BOOTPROTO='dhcp'
STARTMODE='auto'
WIRELESS_AP_SCANMODE='1'
WIRELESS_WPA_DRIVER='nl80211,wext'
WIRELESS_AUTH_MODE='psk'
WIRELESS_MODE='Managed'
WIRELESS_ESSID='<YOUR_ESSID>'
WIRELESS_WPA_PSK='<YOUR_PASSWORD>'

  or a static adress via

BOOTPROTO='static'
IPADDR=''
NETMASK=''
NETWORK=''

  check the wicked examples for further settings.

* Any other file can get deployed by providing a tar ball as root.tar.gz here




