[oe] [meta-networking][PATCH v2] linux-atm: add recipe.

Joe MacDonald Joe_MacDonald at mentor.com
Wed Jan 7 19:11:56 UTC 2015


Merged, I changed DESCRIPTION to SUMMARY in the recipe since it was just
a one-liner, but that's it.  Thanks.

-J.

[[oe] [meta-networking][PATCH v2] linux-atm: add recipe.] On 15.01.05 (Mon 17:01) Bian Naimeng wrote:

> Drivers and tools to support ATM networking under Linux
> 
> Signed-off-by: Bian Naimeng <biannm at cn.fujitsu.com>
> ---
>  .../linux-atm/linux-atm/install-from-buildir.patch | 19 +++++++++++
>  .../linux-atm/linux-atm/link-with-ldflags.patch    | 38 ++++++++++++++++++++++
>  .../recipes-support/linux-atm/linux-atm_2.5.2.bb   | 22 +++++++++++++
>  3 files changed, 79 insertions(+)
>  create mode 100644 meta-networking/recipes-support/linux-atm/linux-atm/install-from-buildir.patch
>  create mode 100644 meta-networking/recipes-support/linux-atm/linux-atm/link-with-ldflags.patch
>  create mode 100644 meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb
> 
> diff --git a/meta-networking/recipes-support/linux-atm/linux-atm/install-from-buildir.patch b/meta-networking/recipes-support/linux-atm/linux-atm/install-from-buildir.patch
> new file mode 100644
> index 0000000..d1380eb
> --- /dev/null
> +++ b/meta-networking/recipes-support/linux-atm/linux-atm/install-from-buildir.patch
> @@ -0,0 +1,19 @@
> +install binaries from builddir not srcdir.
> +
> +Signed-off-by: Bian Naimeng <biannm at cn.fujitsu.com>
> +
> +--- linux-atm-2.5.2.orig/src/extra/Makefile.am	2010-12-21 05:07:22.000000000 +0800
> ++++ linux-atm-2.5.2/src/extra/Makefile.am	2014-12-22 10:56:04.458563269 +0800
> +@@ -9,9 +9,9 @@ CLEANFILES = pca200e.bin pca200e_ecd.bin
> + 
> + install-exec-hook:
> + 	$(MKDIR_P) $(DESTDIR)/lib/firmware
> +-	$(INSTALL_DATA) $(srcdir)/pca200e.bin $(DESTDIR)/lib/firmware
> +-	$(INSTALL_DATA) $(srcdir)/pca200e_ecd.bin2 $(DESTDIR)/lib/firmware
> +-	$(INSTALL_DATA) $(srcdir)/sba200e_ecd.bin2 $(DESTDIR)/lib/firmware
> ++	$(INSTALL_DATA) $(builddir)/pca200e.bin $(DESTDIR)/lib/firmware
> ++	$(INSTALL_DATA) $(builddir)/pca200e_ecd.bin2 $(DESTDIR)/lib/firmware
> ++	$(INSTALL_DATA) $(builddir)/sba200e_ecd.bin2 $(DESTDIR)/lib/firmware
> + 
> + %.bin %.bin2: %.data
> + 	objcopy -Iihex $< -Obinary $@.gz
> diff --git a/meta-networking/recipes-support/linux-atm/linux-atm/link-with-ldflags.patch b/meta-networking/recipes-support/linux-atm/linux-atm/link-with-ldflags.patch
> new file mode 100644
> index 0000000..62fad2a
> --- /dev/null
> +++ b/meta-networking/recipes-support/linux-atm/linux-atm/link-with-ldflags.patch
> @@ -0,0 +1,38 @@
> +LDFLAGS_FOR_BUILD should be required when doing link for qgen.
> +
> +Signed-off-by: Bian Naimeng <biannm at cn.fujitsu.com>
> +
> +diff -Nurp linux-atm-2.5.2.orig/configure.in linux-atm-2.5.2/configure.in
> +--- linux-atm-2.5.2.orig/configure.in	2010-12-28 23:36:07.000000000 +0800
> ++++ linux-atm-2.5.2/configure.in	2014-12-22 10:25:23.830510932 +0800
> +@@ -66,6 +66,7 @@ else
> + fi
> + AC_SUBST(CC_FOR_BUILD)
> + AC_SUBST(CFLAGS_FOR_BUILD)
> ++AC_SUBST(LDFLAGS_FOR_BUILD)
> + dnl Add -d flag to bison/yacc to create intermediate .h files
> + YACC="$YACC -d"
> + 
> +diff -Nurp linux-atm-2.5.2.orig/src/qgen/Makefile.am linux-atm-2.5.2/src/qgen/Makefile.am
> +--- linux-atm-2.5.2.orig/src/qgen/Makefile.am	2010-12-28 22:29:31.000000000 +0800
> ++++ linux-atm-2.5.2/src/qgen/Makefile.am	2014-12-22 10:23:51.914508318 +0800
> +@@ -5,7 +5,7 @@ qgen_SOURCES = common.c common.h file.c
> + qgen_LDADD = -lfl
> + 
> + COMPILE = @CC_FOR_BUILD@ @CFLAGS_FOR_BUILD@
> +-LINK = @CC_FOR_BUILD@ @CFLAGS_FOR_BUILD@ -o $@
> ++LINK = @CC_FOR_BUILD@ @CFLAGS_FOR_BUILD@ @LDFLAGS_FOR_BUILD@ -o $@
> + 
> + #TESTS = $(check_PROGRAMS)
> + 
> +diff -Nurp linux-atm-2.5.2.orig/src/qgen/Makefile.in linux-atm-2.5.2/src/qgen/Makefile.in
> +--- linux-atm-2.5.2.orig/src/qgen/Makefile.in	2010-12-29 00:06:11.000000000 +0800
> ++++ linux-atm-2.5.2/src/qgen/Makefile.in	2014-12-22 10:23:51.914508318 +0800
> +@@ -106,6 +106,7 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
> + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
> + LD = @LD@
> + LDFLAGS = @LDFLAGS@
> ++LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
> + LEX = @LEX@
> + LEXLIB = @LEXLIB@
> + LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
> diff --git a/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb b/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb
> new file mode 100644
> index 0000000..4c0345b
> --- /dev/null
> +++ b/meta-networking/recipes-support/linux-atm/linux-atm_2.5.2.bb
> @@ -0,0 +1,22 @@
> +DESCRIPTION = "Drivers and tools to support ATM networking under Linux"
> +HOMEPAGE = "http://linux-atm.sourceforge.net/"
> +SECTION = "libs"
> +LICENSE = "GPL-2.0 & LGPL-2.0"
> +
> +DEPENDS = "virtual/kernel flex flex-native"
> +
> +SRC_URI = "http://nchc.dl.sourceforge.net/project/${BPN}/${BPN}/${PV}/${BPN}-${PV}.tar.gz \
> +           file://link-with-ldflags.patch \
> +           file://install-from-buildir.patch"
> +
> +SRC_URI[md5sum] = "d49499368c3cf15f73a05d9bce8824a8"
> +SRC_URI[sha256sum] = "9645481a2b16476b59220aa2d6bc5bc41043f291326c9b37581018fbd16dd53a"
> +
> +LIC_FILES_CHKSUM = "\
> +file://COPYING;md5=d928de9537d846935a98af3bbc6e6ee1 \
> +file://COPYING.GPL;md5=ac2db169b9309e240555bc77be4f1a33 \
> +file://COPYING.LGPL;md5=6e29c688d912da12b66b73e32b03d812"
> +
> +inherit autotools pkgconfig
> +
> +FILES_${PN} += "${base_libdir}/firmware"
> -- 
> 1.9.1
> 
-- 
-Joe MacDonald.
:wq
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 490 bytes
Desc: Digital signature
URL: <http://lists.openembedded.org/pipermail/openembedded-devel/attachments/20150107/645b60d6/attachment-0002.sig>


More information about the Openembedded-devel mailing list