From f703534a69fd457d0a15a7f2bc87ce80cfbba369 Mon Sep 17 00:00:00 2001 From: Oyvind Repvik Date: Thu, 4 Aug 2005 12:32:20 +0000 Subject: Added wakelan package --- packages/wakelan/.mtn2git_empty | 0 packages/wakelan/wakelan_1.1.bb | 14 ++++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 packages/wakelan/.mtn2git_empty create mode 100644 packages/wakelan/wakelan_1.1.bb (limited to 'packages') diff --git a/packages/wakelan/.mtn2git_empty b/packages/wakelan/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/wakelan/wakelan_1.1.bb b/packages/wakelan/wakelan_1.1.bb new file mode 100644 index 0000000000..7f4d66c167 --- /dev/null +++ b/packages/wakelan/wakelan_1.1.bb @@ -0,0 +1,14 @@ +LICENSE = "GPL" +MAINTAINER = "Oyvind Repvik " +DESCRIPTION = "Wakelan sends a magic packet to wake up remote PC's" +PR = "r0" + +FILES = "${bindir}/wakelan" +SRC_URI = "http://www.ibiblio.org/pub/Linux/system/network/misc/${PN}-${PV}.tar.gz" + +inherit autotools + +do_install () { + install -d ${bindir} + install -m 0755 ${WORKDIR}/${PN}-${PV}/wakelan ${D}${bindir}/wakelan +} -- cgit v1.2.3 From 941dee3b894a93b0d8596cc0faef31a84b28e358 Mon Sep 17 00:00:00 2001 From: Oyvind Repvik Date: Thu, 4 Aug 2005 12:33:59 +0000 Subject: Add stuff to make wakelan magically appear in openslug feed --- packages/meta/openslug-packages.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'packages') diff --git a/packages/meta/openslug-packages.bb b/packages/meta/openslug-packages.bb index a78f71002c..6d16f9039d 100644 --- a/packages/meta/openslug-packages.bb +++ b/packages/meta/openslug-packages.bb @@ -114,6 +114,7 @@ OPENSLUG_PACKAGES = "\ timezones \ unionfs-modules unionfs-utils \ vlan \ + wakelan \ wget \ xinetd \ yp-tools ypbind ypserv \ -- cgit v1.2.3 From 2273c62b8dd1440b9cb04e18827174a587025f8b Mon Sep 17 00:00:00 2001 From: John Bowler Date: Thu, 4 Aug 2005 14:47:37 +0000 Subject: Add netpbm (missed out from packages before), add wakelan, clean up the .conf file (remove things which do not build) --- packages/meta/ucslugc-packages.bb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages') diff --git a/packages/meta/ucslugc-packages.bb b/packages/meta/ucslugc-packages.bb index 1244eaa8d3..7074cfff48 100644 --- a/packages/meta/ucslugc-packages.bb +++ b/packages/meta/ucslugc-packages.bb @@ -66,6 +66,7 @@ UCSLUGC_PACKAGES = "\ nano \ ncftp \ ncurses \ + netpbm \ ntp \ obexftp openobex openobex-apps ircp \ openldap \ @@ -98,6 +99,7 @@ UCSLUGC_PACKAGES = "\ unionfs-modules unionfs-utils \ util-linux \ vlan \ + wakelan \ wget \ zlib \ " -- cgit v1.2.3 From e1fcfaf38cd250cd8383fa66d75b0543a0543311 Mon Sep 17 00:00:00 2001 From: John Bowler Date: Thu, 4 Aug 2005 16:48:57 +0000 Subject: Add /etc/syslog.conf to the CONFFILES for busybox (CONFFILES are previously empty) and update syslog.conf to comment out the 'ROTATE' lines - these cause busybox syslog to error out with BUFFER=file. --- packages/busybox/busybox_1.00.bb | 3 ++- packages/busybox/files/syslog.conf | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'packages') diff --git a/packages/busybox/busybox_1.00.bb b/packages/busybox/busybox_1.00.bb index f6d03fe69f..988265d72c 100644 --- a/packages/busybox/busybox_1.00.bb +++ b/packages/busybox/busybox_1.00.bb @@ -10,7 +10,7 @@ HOMEPAGE = "http://www.busybox.net" LICENSE = "GPL" SECTION = "base" PRIORITY = "required" -PR = "r29" +PR = "r30" SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ file://add-getkey-applet.patch;patch=1 \ @@ -54,6 +54,7 @@ INITSCRIPT_PACKAGES = "${PN} ${PN}-httpd ${PN}-udhcpd" INITSCRIPT_NAME_${PN}-httpd = "busybox-httpd" INITSCRIPT_NAME_${PN}-udhcpd = "busybox-udhcpd" INITSCRIPT_NAME_${PN} = "syslog" +CONFFILES_${PN} = "${sysconfdir}/syslog.conf" # This disables the syslog startup links in openslug (see openslug-init) INITSCRIPT_PARAMS_${PN}_openslug = "start 20 ." diff --git a/packages/busybox/files/syslog.conf b/packages/busybox/files/syslog.conf index e2a2d58412..d4a0e02f5b 100644 --- a/packages/busybox/files/syslog.conf +++ b/packages/busybox/files/syslog.conf @@ -3,7 +3,7 @@ MARKINT=20 # intervall between --mark-- entries LOGFILE=/var/log/messages # where to log (file) REMOTE=loghost:514 # where to log (syslog remote) REDUCE=no # reduce-size logging -ROTATESIZE=0 # rotate log if grown beyond X [kByte] -ROTATEGENS=3 # keep X generations of rotated logs +#ROTATESIZE=0 # rotate log if grown beyond X [kByte] (incompatible with busybox) +#ROTATEGENS=3 # keep X generations of rotated logs (incompatible with busybox) BUFFERSIZE=64 # size of circular buffer [kByte] FOREGROUND=no # run in foreground (don't use!) -- cgit v1.2.3