diff options
Diffstat (limited to 'meta-trygvis')
-rw-r--r-- | meta-trygvis/conf/layer.conf | 10 | ||||
-rw-r--r-- | meta-trygvis/recipes-core/images/trygvis-bare.bb | 12 | ||||
-rw-r--r-- | meta-trygvis/recipes-core/images/trygvis-console.bb | 22 | ||||
-rw-r--r-- | meta-trygvis/recipes-core/netbase/files/olinuxino/interfaces | 15 | ||||
-rw-r--r-- | meta-trygvis/recipes-core/netbase/netbase_4.47.bbappend | 1 |
5 files changed, 60 insertions, 0 deletions
diff --git a/meta-trygvis/conf/layer.conf b/meta-trygvis/conf/layer.conf new file mode 100644 index 0000000..1d163e5 --- /dev/null +++ b/meta-trygvis/conf/layer.conf @@ -0,0 +1,10 @@ +# We have a conf and classes directory, add to BBPATH +BBPATH := "${BBPATH}:${LAYERDIR}" + +# We have a packages directory, add to BBFILES +BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ + ${LAYERDIR}/recipes-*/*/*.bbappend" + +BBFILE_COLLECTIONS += "trygvis" +BBFILE_PATTERN_trygvis := "^${LAYERDIR}/" +BBFILE_PRIORITY_trygvis = "6" diff --git a/meta-trygvis/recipes-core/images/trygvis-bare.bb b/meta-trygvis/recipes-core/images/trygvis-bare.bb new file mode 100644 index 0000000..54ffdc5 --- /dev/null +++ b/meta-trygvis/recipes-core/images/trygvis-bare.bb @@ -0,0 +1,12 @@ +require recipes-core/images/core-image-minimal.bb + +DESCRIPTION = "Trygvis, yeah." + +PR = "r1" + +# IMAGE_FEATURES += "apps-console-core" + +# fsck.ext2 +IMAGE_INSTALL += "e2fsprogs" + +export IMAGE_BASENAME = "trygvis" diff --git a/meta-trygvis/recipes-core/images/trygvis-console.bb b/meta-trygvis/recipes-core/images/trygvis-console.bb new file mode 100644 index 0000000..c663304 --- /dev/null +++ b/meta-trygvis/recipes-core/images/trygvis-console.bb @@ -0,0 +1,22 @@ +require trygvis-bare.bb + +DESCRIPTION += "Console version." + +PR = "r1" + +IMAGE_FEATURES += "apps-console-core" +IMAGE_FEATURES += "tools-sdk" +IMAGE_FEATURES += "tools-debug" +IMAGE_FEATURES += "tools-profile" +IMAGE_FEATURES += "tools-testapps" +IMAGE_FEATURES += "ssh-server-dropbear" +IMAGE_FEATURES += "debug-tweaks" +# IMAGE_FEATURES += "${X11_IMAGE_FEATURES}" + +IMAGE_INSTALL += "alsa-utils alsa-tools" + +IMAGE_INSTALL += "dhcp" + +IMAGE_INSTALL += "bluez-hcidump bluez4" + +export IMAGE_BASENAME = "trygvis" diff --git a/meta-trygvis/recipes-core/netbase/files/olinuxino/interfaces b/meta-trygvis/recipes-core/netbase/files/olinuxino/interfaces new file mode 100644 index 0000000..adffef9 --- /dev/null +++ b/meta-trygvis/recipes-core/netbase/files/olinuxino/interfaces @@ -0,0 +1,15 @@ +# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8) + +# The loopback interface +auto lo +iface lo inet loopback + +# Wireless interfaces +iface wlan0 inet dhcp + wireless_mode managed + wireless_essid any + wpa-driver wext + wpa-conf /etc/wpa_supplicant.conf + +auto usb0 +iface usb0 inet dhcp diff --git a/meta-trygvis/recipes-core/netbase/netbase_4.47.bbappend b/meta-trygvis/recipes-core/netbase/netbase_4.47.bbappend new file mode 100644 index 0000000..81fe7b7 --- /dev/null +++ b/meta-trygvis/recipes-core/netbase/netbase_4.47.bbappend @@ -0,0 +1 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/files:" |