diff options
116 files changed, 5229 insertions, 1566 deletions
@@ -3,29 +3,29 @@ MultiTech mLinux distribution OpenEmbedded layer This layer depends on: URI: git://git.openembedded.org/openembedded-core -branch: daisy +branch: morty revision: HEAD Numerous layers in: URI: git://git.openembedded.org/meta-openembedded -branch: daisy +branch: morty revision: HEAD MultiTech hardware layer: URI: git://git.multitech.net/meta-multitech -branch: daisy +branch: morty revision: HEAD URI: git://github.com/woglinde/meta-java.git -branch: master -revision: f4c4649 +branch: thud +revision: a265b31 URI: git://git.yoctoproject.org/meta-mono -branch: daisy +branch: morty revision: HEAD URI: git://github.com/imyller/meta-nodejs.git -branch: master +branch: morty revision: HEAD ------------ @@ -36,3 +36,4 @@ mLinux should be built using the mlinux integration repo at git://git.multitech. or using the downloadable tarball. See http://www.multitech.net for instructions and downloads. +This is mLinux 5.x.y, based on Yocto-Morty and Atmel Linux 4.9. diff --git a/recipes-connectivity/lldpd/lldpd/lldpd.default b/recipes-connectivity/lldpd/lldpd/lldpd.default new file mode 100644 index 0000000..b33facf --- /dev/null +++ b/recipes-connectivity/lldpd/lldpd/lldpd.default @@ -0,0 +1,3 @@ +ENABLED="no" +# Uncomment to start SNMP subagent and enable CDP, SONMP and EDP protocol +#DAEMON_ARGS="-x -c -s -e" diff --git a/recipes-connectivity/lldpd/lldpd/lldpd.init.d b/recipes-connectivity/lldpd/lldpd/lldpd.init.d new file mode 100644 index 0000000..d071e1b --- /dev/null +++ b/recipes-connectivity/lldpd/lldpd/lldpd.init.d @@ -0,0 +1,129 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: lldpd +# Required-Start: $remote_fs $network $syslog +# Required-Stop: $network $remote_fs $syslog +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: LLDP daemon +# Description: lldpd is a 802.1AB implementation, a L2 network +# discovery protocol. It also supports CDP, EDP and +# various other protocols. +### END INIT INFO + +# Do NOT "set -e" + +log_daemon_msg() { + echo $* |
