[yocto] [PATCH] sdk-installer: Fix unclear SDK installer message

2016-10-05 Thread Todor Minchev
uilt for x86_64 hosts." Signed-off-by: Todor Minchev --- meta/files/toolchain-shar-extract.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index 66c017f..9295ddc 100644 --- a/meta/files/toolc

Re: [yocto] [RMC][PATCH v2] RMC: Support x32 build

2017-07-06 Thread Todor Minchev
On Wed, 2017-07-05 at 12:39 -0700, swee.aun.k...@intel.com wrote: > From: sweeaun > > RMC efi is needed to compiled as 64 bits even DEFAULTTUNE is x32. > > Signed-off-by: sweeaun > --- > Makefile.efi | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/Makefile.efi b/Makefile.efi > ind

Re: [yocto] [RMC][PATCH v2] RMC: Support x32 build

2017-07-06 Thread Todor Minchev
On Thu, 2017-07-06 at 13:37 -0700, Khem Raj wrote: > On Thu, Jul 6, 2017 at 1:08 PM, Todor Minchev > wrote: > > On Wed, 2017-07-05 at 12:39 -0700, swee.aun.k...@intel.com wrote: > >> From: sweeaun > >> > >> RMC efi is needed to compiled as 64 bits even DEFA

[yocto] [PATCH 1/1] runqemu: add user mode (SLIRP) support to x86 QEMU targets

2016-10-24 Thread Todor Minchev
n with the QB_SLIRP_OPT variable e.g. QB_SLIRP_OPT = "-net nic,model=e1000 -net user,hostfwd=tcp::-:22" Signed-off-by: Todor Minchev --- meta/conf/machine/include/qemuboot-x86.inc | 1 + scripts/runqemu| 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) di

Re: [yocto] [PATCH 1/1] runqemu: add user mode (SLIRP) support to x86 QEMU targets

2016-10-24 Thread Todor Minchev
On Mon, 2016-10-24 at 18:15 -0500, Mark Hatle wrote: > On 10/24/16 5:19 PM, Todor Minchev wrote: > > Using 'slirp' as a command line option to runqemu will start QEMU > > with user mode networking instead of creating tun/tap devices. > > SLIRP does not require root

[yocto] [meta-inte][rmc][PATCH 1/1] rmc: add support for alternative EFI bootloaders

2016-12-13 Thread Todor Minchev
= "grub-efi" Signed-off-by: Todor Minchev --- .../{rmc-systemd-boot.bbclass => rmc-boot.bbclass} | 5 +++-- conf/machine/include/meta-intel.inc| 2 +- documentation/rmc/README | 26 +++--- 3 files changed, 27 insertions(+)

[yocto] [meta-inte][rmc][PATCH v2 1/1] rmc: add support for alternative EFI bootloaders

2016-12-13 Thread Todor Minchev
RMC was previously configured to work only with the systemd-boot EFI bootloader. With this commit we can specify alternative bootloaders by setting the RMC_BOOTLOADER variable in local.conf. If RMC_BOOTLOADER is not set systemd-boot will be used by default. Signed-off-by: Todor Minchev

Re: [yocto] [meta-inte][rmc][PATCH v2 1/1] rmc: add support for alternative EFI bootloaders

2016-12-13 Thread Todor Minchev
On Tue, 2016-12-13 at 16:22 -0800, Jianxun Zhang wrote: > > On Dec 13, 2016, at 2:56 PM, Todor Minchev > > wrote: > > > > RMC was previously configured to work only with the systemd-boot EFI > > bootloader. With this commit we can specify alternative

Re: [yocto] [meta-inte][rmc][PATCH v2 1/1] rmc: add support for alternative EFI bootloaders

2016-12-14 Thread Todor Minchev
> On 12/13/2016 04:50 PM, Todor Minchev wrote: > > On Tue, 2016-12-13 at 16:22 -0800, Jianxun Zhang wrote: > >>> On Dec 13, 2016, at 2:56 PM, Todor Minchev > >>> wrote: > >>> > >>> RMC was previously configured to work only with the syste

Re: [yocto] [meta-inte][rmc][PATCH v2 1/1] rmc: add support for alternative EFI bootloaders

2016-12-15 Thread Todor Minchev
On Thu, 2016-12-15 at 10:09 -0800, Cal Sullivan wrote: > > On 12/13/2016 04:50 PM, Todor Minchev wrote: > > > > On Tue, 2016-12-13 at 16:22 -0800, Jianxun Zhang wrote: > > > > > > > > > > > On Dec 13, 2016, at 2:56 PM, Todor Minchev > >

[yocto] [PATCH 0/3] [meta-intel][rmc] Add fingerprint quering and database extraction functionality to RMC

2017-02-02 Thread Todor Minchev
This patchset adds database extraction and fingerprint quering functionality to RMC Example: Output fingerprint contents to terminal: ./rmc -F -i rmc.fingerprint Extract RMC database: ./rmc -E -d rmc.db https://bugzilla.yoctoproject.org/show_bug.cgi?id=10092 Todor Minchev (3): Makefile

[yocto] [PATCH 1/3] Makefile: add verbosity and debug options to Makefile

2017-02-02 Thread Todor Minchev
symbols and will disable compiler optimizations when compiling rmc. Example: make debug Signed-off-by: Todor Minchev --- Makefile | 31 +-- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 9ade775..d85d8e9 100644 --- a/Makefile

[yocto] [PATCH 2/3] rmc: Enable reading the contents of an existing fingerprint file

2017-02-02 Thread Todor Minchev
The contents of an existing fingerprint file can be read and output on the command line with the following options: ./rmc -F -i input_fingerprint_file Signed-off-by: Todor Minchev --- src/rmc.c | 121 +++--- 1 file changed, 76 insertions

[yocto] [PATCH 3/3] rmc: add database extraction functionality

2017-02-02 Thread Todor Minchev
signature corresponding to the fingerprint for that record. Example: ./src/rmc -E -d rmc.db Successfully extracted rmc.db Signed-off-by: Todor Minchev --- inc/rmc_api.h | 9 ++ src/lib/api.c | 85 +-- src/lib/common/rmcl.c | 3

Re: [yocto] [PATCH 1/3] Makefile: add verbosity and debug options to Makefile

2017-02-06 Thread Todor Minchev
On Mon, 2017-02-06 at 11:06 -0800, Jianxun Zhang wrote: > Todor, > Please refer to my 2 inline comments. > > > On Feb 2, 2017, at 2:37 PM, Todor Minchev > > wrote: > > > > By default Makefile verbosity is disabled (V=0). Verbosity can be enabled by > > se

Re: [yocto] [PATCH 2/3] rmc: Enable reading the contents of an existing fingerprint file

2017-02-06 Thread Todor Minchev
On Mon, 2017-02-06 at 12:01 -0800, Jianxun Zhang wrote: > Tudor, > Please refer to my 3 inline comments. > > > On Feb 2, 2017, at 2:37 PM, Todor Minchev > > wrote: > > > > The contents of an existing fingerprint file can be read and output on > > the

Re: [yocto] [PATCH 3/3] rmc: add database extraction functionality

2017-02-06 Thread Todor Minchev
erging. > > Thanks! > > > On Feb 2, 2017, at 2:37 PM, Todor Minchev > > wrote: > > > > The contents of an existing database file can be extracted in the > > current working directory with the -E option. The top level of the > > directory tree is rmc_d

[yocto] [PATCH v2 0/5] [meta-intel][rmc] Add fingerprint quering and database extraction functionality to RMC

2017-02-09 Thread Todor Minchev
the database to * remove non-alphanumeric characters from fingerprint signatures before using the signatures as directory names Todor Minchev (5): Makefile: disable silent mode in Makefiles Makefile: add debug target rmc: Enable reading the contents of an existing fingerprint file rmc

[yocto] [PATCH v2 1/5] Makefile: disable silent mode in Makefiles

2017-02-09 Thread Todor Minchev
By default make will output the commands that are executed for each target. Silent mode can be enabled with the '-s' option. Example: make -s Signed-off-by: Todor Minchev --- Makefile | 21 +++-- Makefile.efi | 10 +- 2 files changed, 16 insertions(+), 15

[yocto] [PATCH v2 2/5] Makefile: add debug target

2017-02-09 Thread Todor Minchev
A debug version of the rmc binary can be built by using the debug Makefile target. This will include debug symbols and will disable compiler optimizations. Example: make debug Signed-off-by: Todor Minchev --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile

[yocto] [PATCH v2 3/5] rmc: Enable reading the contents of an existing fingerprint file

2017-02-09 Thread Todor Minchev
The contents of an existing fingerprint file can be read and output on the command line with the following options: rmc -E -f input_fingerprint_file Signed-off-by: Todor Minchev --- src/rmc.c | 98 ++- 1 file changed, 65 insertions

[yocto] [PATCH v2 4/5] rmc: remove unnecessary return variable

2017-02-09 Thread Todor Minchev
Signed-off-by: Todor Minchev --- src/rmc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/rmc.c b/src/rmc.c index f3a2a5e..b5c7847 100644 --- a/src/rmc.c +++ b/src/rmc.c @@ -218,7 +218,6 @@ read_fp_done: static rmc_file_t *read_policy_file(char *pathname, int type

[yocto] [PATCH v2 5/5] rmc: add database extraction functionality

2017-02-09 Thread Todor Minchev
-directory name of each record is the signature corresponding to the fingerprint for that record with all non-alphanumeric characters stripped. Example: ./src/rmc -E -d rmc.db -o output/directory/ Successfully extracted rmc.db Signed-off-by: Todor Minchev --- inc/rmc_api.h | 9

Re: [yocto] [PATCH v2 2/5] Makefile: add debug target

2017-02-14 Thread Todor Minchev
On Fri, 2017-02-10 at 10:58 -0800, Jianxun Zhang wrote: > > On Feb 9, 2017, at 11:17 AM, Todor Minchev > > wrote: > > > > A debug version of the rmc binary can be built by using the debug > > Makefile target. This will include debug symbols and will disa

Re: [yocto] [PATCH v2 5/5] rmc: add database extraction functionality

2017-02-14 Thread Todor Minchev
ur feedbacks in V1 threads. Sorry for not to point out > things earlier before the V2. > > Thanks > > > On Feb 9, 2017, at 11:17 AM, Todor Minchev > > wrote: > > > > The contents of an existing database file can be extracted with the -E > > o

[yocto] [PATCH v3 0/5][meta-intel][rmc] Add fingerprint quering and database extraction functionality to RMC

2017-02-14 Thread Todor Minchev
This is V3 of the patchset. It addresses all feedback received in V2. Changes from previous version: * use mkdir() instead of system() to create output directories * use ASCII representation of fingerprint signatures in hex as directory names * remove extra verbosity from fingerprint dump Todor

[yocto] [PATCH v3 1/5] Makefile: disable silent mode in Makefiles

2017-02-14 Thread Todor Minchev
By default make will output the commands that are executed for each target. Silent mode can be enabled with the '-s' option. Example: make -s Signed-off-by: Todor Minchev --- Makefile | 21 +++-- Makefile.efi | 10 +- 2 files changed, 16 insertions(+), 15

[yocto] [PATCH v3 2/5] Makefile: add debug target

2017-02-14 Thread Todor Minchev
A debug version of the rmc binary can be built by using the debug Makefile target. This will include debug symbols and will disable compiler optimizations. Example: make debug Signed-off-by: Todor Minchev --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile

[yocto] [PATCH v3 3/5] rmc: enable reading the contents of an existing fingerprint file

2017-02-14 Thread Todor Minchev
The contents of an existing fingerprint file can be read and output on the command line with the following options: rmc -E -f input_fingerprint_file Signed-off-by: Todor Minchev --- src/rmc.c | 97 +-- 1 file changed, 64 insertions

[yocto] [PATCH v3 5/5] rmc: add database extraction functionality

2017-02-14 Thread Todor Minchev
-directory name for each record is the hex representation of the signature corresponding to the fingerprint for that record. Example: ./src/rmc -E -d rmc.db -o output/directory/ Successfully extracted rmc.db Signed-off-by: Todor Minchev --- inc/rmc_api.h | 9 inc/rmcl.h

[yocto] [PATCH v3 4/5] rmc: remove unnecessary return variable

2017-02-14 Thread Todor Minchev
Signed-off-by: Todor Minchev --- src/rmc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/rmc.c b/src/rmc.c index 54710c7..9a63069 100644 --- a/src/rmc.c +++ b/src/rmc.c @@ -218,7 +218,6 @@ read_fp_done: static rmc_file_t *read_policy_file(char *pathname, int type

[yocto] [PATCH 1/1][meta-intel][rmc] rmc: update SRCREV for rmc recipe

2017-03-17 Thread Todor Minchev
This SRCREV adds fingerprint and database extraction functionality to RMC Extract database: rmc -E -d rmc.db -o output/directory/ Extract fingerprint: rmc -E -f fingerprint_file https://bugzilla.yoctoproject.org/show_bug.cgi?id=10092 Signed-off-by: Todor Minchev --- common/recipes-bsp/rmc

[yocto] [PATCH] oeqa/sdkext/devtool: replace v4l2loopback with fbtft kernel module

2017-05-11 Thread Todor Minchev
The v4l2loopback makefile assumes that the module will only be built natively and breaks if it is cross-compiled or built in a container. Signed-off-by: Todor Minchev --- meta/lib/oeqa/sdkext/cases/devtool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa