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 > <todor.minc...@linux.intel.com> wrote: > > On Wed, 2017-07-05 at 12:39 -0700, swee.aun.k...@intel.com wrote: > >> From: sweeaun <swee.aun.k...@intel.com> > &

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(+)

[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 <todor.minc...@linux.intel.com> --- meta/lib/oeqa/sdkext/cases/devtool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 del

[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 <todor.minc...@linux.intel.

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

2017-02-14 Thread Todor Minchev
Signed-off-by: Todor Minchev <todor.minc...@linux.intel.com> --- 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_

[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 <todor.minc...@linux.intel.com> --- inc/rmc

[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 <todor.minc...@linux.intel.com> --- src/rmc.c | 97 +---

[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 <todor.minc...@linux.intel.com> --- Makefile | 21 +++-- Makefile.efi | 10 +- 2 files c

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 <todor.minc...@linux.intel.com> > > wrote: > > > > The contents of an existing database file can be ext

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 <todor.minc...@linux.intel.com> > > wrote: > > > > A debug version of the rmc binary can be built by using the debug > > Makefile target. This will in

[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 <todor.minc...@linux.intel.com> --

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

2017-02-09 Thread Todor Minchev
Signed-off-by: Todor Minchev <todor.minc...@linux.intel.com> --- 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_

[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 <todor.minc...@linux.intel.com> --- src/rmc.c | 98 ++--

[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 <todor.minc...@linux.intel.com> --- Makefile | 2 ++ 1 file changed, 2 inse

[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 <todor.minc...@linux.intel.com> --- Makefile | 21 +++-- Makefile.efi | 10 +- 2 files c

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

2017-02-06 Thread Todor Minchev
peline of merging. > > Thanks! > > > On Feb 2, 2017, at 2:37 PM, Todor Minchev <todor.minc...@linux.intel.com> > > wrote: > > > > The contents of an existing database file can be extracted in the > > current working directory with the -E option. The top

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 <todor.minc...@linux.intel.com> > > wrote: > > > > The contents of an existing fingerprint file can be

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 <todor.minc...@linux.intel.com> > > wrote: > > > > By default Makefile verbosity is disabled (V=0).

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

2017-02-02 Thread Todor Minchev
is the signature corresponding to the fingerprint for that record. Example: ./src/rmc -E -d rmc.db Successfully extracted rmc.db Signed-off-by: Todor Minchev <todor.minc...@linux.intel.com> --- inc/rmc_api.h | 9 ++ src/lib/api.c

[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 <todor.minc...@linux.intel.com> --- src/rmc.c

[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 <todor.minc...@linux.intel.com> --- Makefile | 31 +-- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 9

[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

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 Min

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 > >>> <todor.minc...@linux.intel.com> wrote: > >>> > >>> RMC was previously confi

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 <todor.minc...@linux.intel.com> > > wrote: > > > > RMC was previously configured to work only with the systemd-boot EFI > > bootloader. With this commit we

[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

[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 <todor.minc...@linux.intel.com> --- .../{rmc-systemd-boot.bbclass => rmc-boot.bbclass} | 5 +++-- conf/machine/include/meta-intel.inc| 2 +- documentation/rmc/README | 26 +++-

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 access.

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

2016-10-24 Thread Todor Minchev
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 <todor.minc...@linux.intel.com> --- meta/conf/machine/include/qemuboot-x86.inc | 1 + scripts/runqemu| 3 ++- 2 files changed, 3

[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 <todor.minc...@linux.intel.com> --- 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..9295d