From: Bernhard Fischer <rep.dot.nop@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] OLSR in buildroot - patch
Date: Wed, 19 Sep 2007 09:59:13 +0200 [thread overview]
Message-ID: <20070919075913.GA11856@aon.at> (raw)
In-Reply-To: <46F061BB.1070604@gmail.com>
On Tue, Sep 18, 2007 at 08:39:39PM -0300, Rex Luscus wrote:
> this is a possible patch to discuss
>Index: package/olsr/files/S50olsr
>===================================================================
>--- package/olsr/files/S50olsr (revisi??n: 0)
>+++ package/olsr/files/S50olsr (revisi??n: 0)
>@@ -0,0 +1,22 @@
>+#!/bin/sh
>+#
>+# Starts OLSRD deamon
>+#
>+case "$1" in
>+ start)
>+ echo -n "Starting OLSRd deamon: "
>+ start-stop-daemon --start --quiet --pidfile /var/run/olsrd.pid --exec /usr/sbin/olsrd
As said, long options are a nono. Please fix.
>+ echo "OK"
>+ ;;
>+ stop)
>+ echo -n "Stopping OLSRd deamon: "
>+ start-stop-daemon --stop --quiet --pidfile /var/run/olsrd.pid
>+ echo "OK"
>+ ;;
>+ *)
>+ echo $"Usage: $0 {start|stop}"
>+ exit 1
>+esac
>+
>+exit $?
>+
>Index: package/olsr/olsr.mk
>===================================================================
>--- package/olsr/olsr.mk (revisi??n: 0)
>+++ package/olsr/olsr.mk (revisi??n: 0)
>@@ -0,0 +1,61 @@
>+#############################################################
>+#
>+# olsr
>+#
>+#############################################################
>+
>+OLSR_VERSION_MAJOR=0.5
>+OLSR_VERSION_MINOR=3
>+OLSR_VERSION:=$(OLSR_VERSION_MAJOR).$(OLSR_VERSION_MINOR)
>+OLSR_SOURCE:=olsrd-$(OLSR_VERSION).tar.bz2
>+OLSR_SITE:=http://www.olsr.org/releases/$(OLSR_VERSION_MAJOR)
>+OLSR_DIR:=$(BUILD_DIR)/olsrd-$(OLSR_VERSION)
>+OLSR_CAT:=$(BZCAT)
>+OLSR_BINARY:=olsrd
>+OLSR_TARGET_BINARY:=usr/bin/olsrd
>+#OLSR_PLUGINS=httpinfo tas dot_draw nameservice dyn_gw dyn_gw_plain pgraph bmf quagga secure
>+OLSR_PLUGINS=dot_draw dyn_gw secure
>+OLSR_TARGET_PLUGIN=usr/lib/
>+
>+$(DL_DIR)/$(OLSR_SOURCE):
>+ $(WGET) -P $(DL_DIR) $(OLSR_SITE)/$(OLSR_SOURCE)
>+
>+olsr-source: $(DL_DIR)/$(OLSR_SOURCE)
>+
>+olsr-unpacked: $(OLSR_DIR)/.unpacked
>+$(OLSR_DIR)/.unpacked: $(DL_DIR)/$(OLSR_SOURCE)
>+ $(OLSR_CAT) $(DL_DIR)/$(OLSR_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
>+ touch $@
>+
>+$(OLSR_DIR)/.configured: $(OLSR_DIR)/.unpacked
>+ touch $@
>+
>+$(OLSR_DIR)/$(OLSR_BINARY): $(OLSR_DIR)/.configured
>+ $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(OLSR_DIR) olsrd $(OLSR_PLUGINS)
>+
>+$(TARGET_DIR)/$(OLSR_TARGET_BINARY): $(OLSR_DIR)/$(OLSR_BINARY)
>+ rm -f $(TARGET_DIR)/$(OLSR_TARGET_BINARY)
>+ cp -dpf $(OLSR_DIR)/$(OLSR_BINARY) $(TARGET_DIR)/$(OLSR_TARGET_BINARY)
>+ cp -R $(OLSR_DIR)/lib/*/olsrd_*.so.* $(TARGET_DIR)/$(OLSR_TARGET_PLUGIN)
>+ mkdir -p $(TARGET_DIR)/etc/init.d
>+ cp package/olsr/files/S50olsr $(TARGET_DIR)/etc/init.d/
>+ chmod a+x $(TARGET_DIR)/etc/init.d/S50olsr
S50olsr will be executable in the repository, so this is not needed.
>+ cp $(OLSR_DIR)/files/olsrd.conf.default.lq $(TARGET_DIR)/etc/olsrd.conf
Only do this if $(TARGET_DIR)/etc/olsrd.conf doesn't exist. Otherwise
you cannot have a premade conf.
>+
>+olsr: uclibc $(TARGET_DIR)/$(OLSR_TARGET_BINARY)
>+
>+olsr-clean:
>+ rm -f $(TARGET_DIR)/$(OLSR_TARGET_BINARY)
>+ -$(MAKE) -C $(OLSR_DIR) clean
This has to rm the S50olsr and the libs too.
>+
>+olsr-dirclean:
>+ rm -rf $(OLSR_DIR)
>+
>+#############################################################
>+#
>+# Toplevel Makefile options
>+#
>+#############################################################
>+ifeq ($(strip $(BR2_PACKAGE_OLSR)),y)
>+TARGETS+=olsrd $(OLSR_PLUGINS)
>+endif
>Index: package/olsr/Config.in
>===================================================================
>--- package/olsr/Config.in (revisi??n: 0)
>+++ package/olsr/Config.in (revisi??n: 0)
>@@ -0,0 +1,10 @@
>+config BR2_PACKAGE_OLSR
>+ bool "OLSR mesh networking Deamon"
you probably mean daemon.
>+ default n
>+ help
>+ olsr
>+
>+ A mesh networking protocol
A bit more description would be nice.
>+
>+ http://www.olsr.org/
>+
next prev parent reply other threads:[~2007-09-19 7:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-18 23:39 [Buildroot] OLSR in buildroot - patch Rex Luscus
2007-09-19 4:28 ` Ulf Samuelsson
2007-09-19 7:59 ` Bernhard Fischer [this message]
[not found] ` <a63ecaf0709190633j4e380661gc7fdc59cfcfc7d31@mail.gmail.com>
2007-09-19 13:57 ` Bernhard Fischer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070919075913.GA11856@aon.at \
--to=rep.dot.nop@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox