[oe] [meta-oe][PATCH] libftdi: Extend for nativesdk

2018-07-26 Thread Nathan Rossi
as a buildtools-tarball deployable. Signed-off-by: Nathan Rossi --- Tested the resulting libftdi on an x86-64 host with a buildtools-tarball containing the icestorm iceprog tool. For icestorm/iceprog recipe: https://github.com/nathanrossi/meta-hdl/blob/master/icestorm/icestorm_git.bb --- meta-oe/recipes

Re: [oe] [meta-oe][PATCH 0/6] sigrok: set of new packages

2018-11-24 Thread Nathan Rossi
On Sat, 24 Nov 2018 at 01:39, Bartosz Golaszewski wrote: > > This series adds recipes for libsigrok and accompanying libraries and > tools. The eventual goal is to add pulseview - the graphical interface > for sigrok - to meta-qt5-extra. > > First two patches add external packages used by

Re: [oe] [meta-oe][PATCH 0/6] sigrok: set of new packages

2018-11-25 Thread Nathan Rossi
On Mon, 26 Nov 2018 at 01:12, Bartosz Golaszewski wrote: > > niedz., 25 lis 2018 o 07:04 Nathan Rossi napisaƂ(a): > > > > On Sat, 24 Nov 2018 at 01:39, Bartosz Golaszewski wrote: > > > > > > This series adds recipes for libsigrok and accompanying librarie

[oe] [meta-filesystems][PATCH v2] fatresize_1.0.2.bb: Add recipe for fatresize command line tool

2019-04-10 Thread Nathan Rossi
). The Debian version of the source is used as the original upstream on SourceForge is no longer actively maintained. Signed-off-by: Nathan Rossi --- Changes in v2: - Removed '-git+${SRCPV}' from PV, as SRCREV matches exact version --- .../recipes-utils/fatresize/fatresize_1.0.2.bb| 15

[oe] [meta-filesystems][PATCH] fatresize_1.0.2.bb: Add recipe for fatresize command line tool

2019-04-10 Thread Nathan Rossi
). The Debian version of the source is used as the original upstream on SourceForge is no longer actively maintained. Signed-off-by: Nathan Rossi --- .../recipes-utils/fatresize/fatresize_1.0.2.bb| 15 +++ 1 file changed, 15 insertions(+) create mode 100644 meta-filesystems

[oe] [meta-oe][PATCH] libeigen: Add native and nativesdk to BBCLASSEXTEND

2019-09-16 Thread Nathan Rossi
Signed-off-by: Nathan Rossi --- meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb b/meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb index e1deb662ae..f638848d15 100644 --- a/meta-oe

[oe] [meta-python][PATCH] python*-pyusb: Add native and nativesdk to BBCLASSEXTEND

2019-09-16 Thread Nathan Rossi
Signed-off-by: Nathan Rossi --- meta-python/recipes-devtools/python/python-pyusb.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-python/recipes-devtools/python/python-pyusb.inc b/meta-python/recipes-devtools/python/python-pyusb.inc index 30bbe85a91..baf2db5301 100644 --- a/meta

[oe] [meta-python][PATCH] python*-pyserial: Add native and nativesdk to BBCLASSEXTEND

2019-09-16 Thread Nathan Rossi
Signed-off-by: Nathan Rossi --- meta-python/recipes-devtools/python/python-pyserial.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-python/recipes-devtools/python/python-pyserial.inc b/meta-python/recipes-devtools/python/python-pyserial.inc index 52a7e05ce6..870f1d8a8a 100644

[oe] [meta-webserver][PATCH] nginx: Fix off_t size passed in configure

2021-08-31 Thread Nathan Rossi
For linux, nginx will always compile with '-D_FILE_OFFSET_BITS=64'. This means that off_t will always be 8 bytes long, even on 32-bit targets. This configuration change resolves some issues with nginx and handling range headers. Signed-off-by: Nathan Rossi --- meta-webserver/recipes-httpd