Compare commits

..

4 Commits

10 changed files with 40 additions and 21 deletions

View File

@ -1,6 +1,5 @@
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
#file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
@ -26,4 +25,3 @@ do_install_append () {
ln -s ../init.d/ntpd S48ntpd.sh
ln -s ../init.d/docker.init S50docker.sh
}

View File

@ -3,3 +3,4 @@ CONFIG_FEATURE_NTPD_SERVER=y
CONFIG_FEATURE_NTPD_CONF=y
CONFIG_FEATURE_NTP_AUTH=y
CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -b -H $HOSTNAME"

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

@ -24,9 +24,9 @@
# Offline mode (for use in constructing flash images offline)
#option offline_root target
src/gz all https://opkg.blackfinn.de/thud/all
src/gz beaglebone https://opkg.blackfinn.de/thud/beaglebone
src/gz cortexa8hf-neon https://opkg.blackfinn.de/thud/cortexa8hf-neon
src/gz all https://files.blackfinn.de/yocto/gatesgarth/all
src/gz beaglebone https://files.blackfinn.de/yocto/gatesgarth/beaglebone_yocto
src/gz cortexa8hf-neon https://files.blackfinn.de/yocto/gatesgarth/cortexa8hf-neon
# Default destination for installed packages
dest root /

View File

@ -24,9 +24,9 @@
# Offline mode (for use in constructing flash images offline)
#option offline_root target
src/gz all https://opkg.blackfinn.de/thud/all
src/gz raspberrypi3_64 https://opkg.blackfinn.de/thud/raspberrypi3_64
src/gz aarch64 https://opkg.blackfinn.de/thud/aarch64
src/gz all https://files.blackfinn.de/yocto/gatesgarth/all
src/gz raspberrypi3_64 https://files.blackfinn.de/yocto/gatesgarth/raspberrypi3_64
src/gz cortexa53 https://files.blackfinn.de/yocto/gatesgarth/cortexa53
# Default destination for installed packages
dest root /

View File

@ -24,9 +24,9 @@
# Offline mode (for use in constructing flash images offline)
#option offline_root target
src/gz all https://opkg.blackfinn.de/thud/all
src/gz raspberrypi4_64 https://opkg.blackfinn.de/thud/raspberrypi4_64
src/gz aarch64 https://opkg.blackfinn.de/thud/aarch64
src/gz all https://files.blackfinn.de/yocto/gatesgarth/all
src/gz raspberrypi4_64 https://files.blackfinn.de/yocto/gatesgarth/raspberrypi4_64
src/gz cortexa72 https://files.blackfinn.de/yocto/gatesgarth/cortexa72
# Default destination for installed packages
dest root /

View File

@ -3,20 +3,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
KERNEL_MODULE_AUTOLOAD_ti33x += " rtl8192cu"
KERNEL_MODULE_AUTOLOAD += " rtl8192cu"
SRC_URI_ti33x += " \
SRC_URI += " \
file://rtl8192cu.cfg \
file://enable_onboard_leds.cfg \
file://enable_hostap_wext.cfg \
file://0002-onboard-led-init-disable.patch \
"
KERNEL_CONFIG_FRAGMENTS_append_ti33x = " \
KERNEL_CONFIG_FRAGMENTS_append = " \
${WORKDIR}/rtl8192cu.cfg \
${WORKDIR}/enable_onboard_leds.cfg \
${WORKDIR}/enable_hostap_wext.cfg \
${WORKDIR}/enable_cgroups.cfg \
"