meta-rpi: initial commit

Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
This commit is contained in:
2017-06-13 14:55:28 +02:00
committed by Thomas Klaehn
commit 482c08e442
22 changed files with 467 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"

View File

@@ -0,0 +1,12 @@
______ _ ______ _
| ___ \ | | | ___ (_)
| |_/ /__ _ ___ _ __ | |__ ___ _ __ _ __ _ _| |_/ /_
| // _` / __| '_ \| '_ \ / _ \ '__| '__| | | | __/| |
| |\ \ (_| \__ \ |_) | |_) | __/ | | | | |_| | | | |
\_| \_\__,_|___/ .__/|_.__/ \___|_| |_| \__, \_| |_|
| | __/ |
|_| |___/

View File

@@ -0,0 +1,22 @@
# The loopback interface
auto lo
iface lo inet loopback
# Wireless interface
allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid any
wpa-driver nl80211
wpa-conf /etc/wpa_supplicant.conf
wireless-power off
# Wired interface
auto eth0
iface eth0 inet dhcp
# Bluetooth networking
iface bnep0 inet dhcp

View File

@@ -0,0 +1,2 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"