From 67067c8bb631cd7221de861626105356ae8b6471 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 9 Jan 2008 02:34:12 +0000 Subject: openwrt-sdk.conf: Elaborate, tested to actually work. * Set IPKGBUILDCMD to produce openwrt-compatible packages (tar.gz toplevel wrap instead of ar). Caveat: latest ipkg-make-index doesn't support these. Pre-latest, doesn't throw error, but generates crap still. * Added ASSUME_SHLIB for libm. --- conf/distro/openwrt-sdk.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/conf/distro/openwrt-sdk.conf b/conf/distro/openwrt-sdk.conf index fc760f9ea0..92e5ac5b39 100644 --- a/conf/distro/openwrt-sdk.conf +++ b/conf/distro/openwrt-sdk.conf @@ -18,9 +18,12 @@ require conf/distro/generic-uclibc.conf # Header # DISTRO_NAME = "OpenWRT" +DISTRO_REVISION = "2" + +IPKGBUILDCMD = "ipkg-build -c -o 0 -g 0" # This is what lives in SDK ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc" # Make sure that we have correct package dependencies for SDK-provided libs. -ASSUME_SHLIBS += "libc.so.0:uclibc libgcc_s.so.1:libgcc" +ASSUME_SHLIBS += "libc.so.0:uclibc libm.so.0:uclibc libgcc_s.so.1:libgcc" -- cgit v1.2.3 From 1b196629a83ad5c24317b940a30df34cc5f7b4b4 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 9 Jan 2008 02:38:55 +0000 Subject: nut: Add new package, Network UPS tools. * Usersapce drivers to talk to various UPSes (including USB) as well as control daemons and utils. * Needs finegrained packaging to be useful for small router install. --- packages/nut/.mtn2git_empty | 0 packages/nut/files/.mtn2git_empty | 0 packages/nut/files/libm.patch | 21 +++++++++++++++++++++ packages/nut/nut_2.2.1.bb | 14 ++++++++++++++ 4 files changed, 35 insertions(+) create mode 100644 packages/nut/.mtn2git_empty create mode 100644 packages/nut/files/.mtn2git_empty create mode 100644 packages/nut/files/libm.patch create mode 100644 packages/nut/nut_2.2.1.bb diff --git a/packages/nut/.mtn2git_empty b/packages/nut/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/nut/files/.mtn2git_empty b/packages/nut/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/nut/files/libm.patch b/packages/nut/files/libm.patch new file mode 100644 index 0000000000..658d42face --- /dev/null +++ b/packages/nut/files/libm.patch @@ -0,0 +1,21 @@ +--- a/drivers/Makefile.am.org 2007-10-01 16:06:24.000000000 +0300 ++++ a/drivers/Makefile.am 2008-01-09 02:13:09.000000000 +0200 +@@ -125,7 +125,7 @@ + tripplite_usb_LDADD = $(LDADD_DRIVERS) $(LIBUSB_LDFLAGS) -lm + + bcmxcp_usb_SOURCES = bcmxcp_usb.c bcmxcp.c nut_usb.c +-bcmxcp_usb_LDADD = $(LDADD_DRIVERS) $(LIBUSB_LDFLAGS) ++bcmxcp_usb_LDADD = $(LDADD_DRIVERS) $(LIBUSB_LDFLAGS) -lm + + megatec_usb_SOURCES = megatec.c megatec_usb.c libusb.c + megatec_usb_CFLAGS = $(AM_CFLAGS) -DMEGATEC_SUBDRV +--- a/drivers/Makefile.am.org 2008-01-09 02:14:32.000000000 +0200 ++++ a/drivers/Makefile.am 2008-01-09 02:17:37.000000000 +0200 +@@ -67,6 +67,7 @@ + al175_SOURCES = al175.c + apcsmart_SOURCES = apcsmart.c + bcmxcp_SOURCES = bcmxcp.c bcmxcp_ser.c ++bcmxcp_LDADD = $(LDADD) -lm + belkin_SOURCES = belkin.c + belkinunv_SOURCES = belkinunv.c + bestfcom_SOURCES = bestfcom.c diff --git a/packages/nut/nut_2.2.1.bb b/packages/nut/nut_2.2.1.bb new file mode 100644 index 0000000000..db3367435d --- /dev/null +++ b/packages/nut/nut_2.2.1.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Network UPS Tools" +LICENSE = "GPL" +DEPENDS = "libusb" +PR = "r1" + +inherit autotools + +EXTRA_OECONF = "--with-usb" + +SRC_URI = "http://www.networkupstools.org/source/2.2/nut-${PV}.tar.gz \ + file://libm.patch;patch=1 \ + " + +FILES_${PN} += "${datadir}/" -- cgit v1.2.3 From e7850070f1cd5520296789de18cfa08f28d00de8 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 9 Jan 2008 02:40:28 +0000 Subject: MAINTAINERS: Update my entry. --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index c11f463a98..e7016392ea 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -162,7 +162,7 @@ Mail: pmiscml@gmail.com Machines: h3900, h4000, hx4700 Interests: PocketPC and Palm devices support, Win32 support Interests: Cross-machine unification -Recipes: linux-handhelds-2.6, opie-* +Recipes: linux-handhelds-2.6, opie-*, initramfs-*, gnome-mplayer Person: Philip Balister Mail: Crofton@balister.org -- cgit v1.2.3