Re: [yocto] :how to solve the basehash value changed from 'xxx' to 'aaaa' ?

2019-11-21 Thread Mike Looijmans
Without your recipe source code, no one can tell for sure, but I suspect you have something like a "DATE" in there that evaulates to a different value if you run it a second later. Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Products B.V. Ma

Re: [yocto] [warrior] [meta-qt4] 3rdparty: javascriptcore: JITStubs.cpp: allow builds of JavaScriptCore with gcc v8

2019-11-20 Thread Mike Looijmans
I ran into this issue yesterday, and this patch solves the compilation on warrior. However, it's a patch for Qt itself, and not for OE. Is there already a warrior patch in the making, or should I submit one? On 19-11-19 13:37, Quentin Schulz wrote: > At least since gcc v8, source code with asm

Re: [yocto] Reducing the size of the image by optimizing python

2019-10-21 Thread Mike Looijmans
append() { find ${D}${libdir}/python${PYTHON_MAJMIN}/ -name '*.py' -remove } Removing the ".py" files roughly cuts the disk space in half. The "src" approach works on any package, and has the advantage that you can still install the source files for debugging and de

Re: [yocto] Getting a package PV from another

2019-07-01 Thread Mike Looijmans
The version of your OE layer is all the version that you'll ever (technically) need. That version (usually a git hash) dictates all other versions. When asked for version numbers of included packages, I always just dump the manifest file into their lap. You can also ask and report the version

Re: [yocto] Yocto Project support for Numeric/Scientific Python

2019-04-11 Thread Mike Looijmans
:01, Philip Balister wrote: > Sounds like we need a layer for packages that needs fortran enabled and > collect out work there. > > Philip > > On 01/24/2019 05:31 AM, Mike Looijmans wrote: >> +1 >> >> Got lapack to compile, but no such luck with any "bla

Re: [yocto] [rauc] create a rescue image

2019-03-28 Thread Mike Looijmans
On 26-03-19 11:02, jairo wrote: > El mar, 26-03-2019 a las 09:14 +0100, Patrick Boettcher escribió: >> On Tue, 26 Mar 2019 09:05:47 +0100 >> jairo wrote: ... > Yes, I know, it is somewhat risky, but I have only 512MB of nand > memory, and we are getting a lot of software. I think we have to >

Re: [yocto] [rauc] create a rescue image

2019-03-26 Thread Mike Looijmans
On 26-03-19 12:31, jairo wrote: > > Thank you very much Mike. > > > >> With NAND you'll probably have a filesystem (jffs2 or UBI) in place. >> With that, you could just use a package manager like opkg to update >> sofware. If the box has a network connection, just running "opkg >> update &&

Re: [yocto] how to make writable permission for home/root in read-only rootfs (yocto build)

2019-03-20 Thread Mike Looijmans
On 19-03-19 11:26, Arunkumar V wrote: > HI > > can any one explain me how to config the /home/root as writable in read-only > rootfs? > > is any setting to do with local file or .bbclass? > if any macros need to be enable, please > You can mount something writeable on top of /home/root to

Re: [yocto] Managing multiple builds

2019-02-15 Thread Mike Looijmans
uot; > to avoid different configs stepping on each other. > > Does this seem like the proper way to do things? > > > > On Wed, Feb 13, 2019 at 11:18 PM Mike Looijmans <mailto:mike.looijm...@topic.nl>> wrote: > > Two products sounds like two machines. J

Re: [yocto] Managing multiple builds

2019-02-14 Thread Mike Looijmans
Two products sounds like two machines. Just create a machine.conf for each product (even if they use similar hardware), then you don't need overrides elsewhere. OE/Yocto is smart enough to figure out what needs to be (re)built. Some OE projects build the same image(s) for over 40 machines (and

Re: [yocto] Make one directory writeable

2019-02-13 Thread Mike Looijmans
As for the particular case of /mnt, on most images, /mnt is a symlink to /media, and /media is (on) a filesystem in RAM, so it's already writeable. If the write does not need to persist across reboots, use a tmpfs mount. If your real problem is that you cannot create anything in /mnt (or /media

Re: [yocto] Update kernel by package-management

2019-02-11 Thread Mike Looijmans
On 08-02-19 17:02, Mauro Ziliani wrote: > Hi all. > > I know this is a VERY dangerous operation, but I'm curious. Depends on your definition of "dangerous". > Is it possible to upgrade the kernel & dtb from debian package in Yocto? Sure, doing it all the time (from ipk, but that shouldn't

Re: [yocto] Yocto Project support for Numeric/Scientific Python

2019-01-24 Thread Mike Looijmans
+1 Got lapack to compile, but no such luck with any "blas" package (like openblas). And that's a requirement for octave, which was what I was aiming at. I'll share some recipes, tomorrow or so (today is stuffed with other work). On 23-01-19 22:39, Philip Balister wrote: > I care :) > > On

Re: [yocto] Set linux capabilities on binary on a recipe in meta-oe layer

2018-11-12 Thread Mike Looijmans
Sometimes the problem is that parts of the underscored function name are seen as overrides, so you should try using "mysetcapfunction" instead as a name. Also, there's a semicolon missing: ROOTFS_POSTPROCESS_COMMAND += "my_setcap_function;" On 12-11-18 14:09, Markus W wrote: > Thanks Uwe! > >

Re: [yocto] [PATCH] runtime: add BSP test case for usb storage

2018-10-01 Thread Mike Looijmans
On 24-09-18 23:01, Paul Eggleton wrote: On Monday, 24 September 2018 3:02:28 PM NZST Hussin, Mohamad Noor Alim wrote: ... Otherwise I agree with Mike's reply, we should avoid writing to the storage device as part of the test. It is mean that just do test like mount and unmount only? To read

Re: [yocto] Yocto userbase in numbers?

2018-08-24 Thread Mike Looijmans
On 20-08-18 09:40, Joe Steeve wrote: On Thu, 2018-08-09 at 21:43 +0100, Richard Purdie wrote: Even if you just look at the fields the project is used in based on the project's members like Comcast, the automotive industry (e.g. Automotive Grade Linux), several major OS vendors (Windriver,

Re: [yocto] [PATCH] runtime: add BSP test case for usb storage

2018-08-20 Thread Mike Looijmans
I would not write to flash media in this test. It's pointless, if you can read the the device, it means that you can already send commands and data to it, and reading will thus test data going in both directions already. Writing to the media will just wear it out, and if there's a problem

Re: [yocto] Fwd: Basehash value changed issue

2018-07-02 Thread Mike Looijmans
regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the environment before printing this e-mail -- Forwarded

Re: [yocto] fstab entry not mounting at boot-up

2018-01-11 Thread Mike Looijmans
fstab gets mounted on boot. Does anyone know why my new entry doesn't? Wild guess: "/mnt/drive" does not exist yet when the fstab is processed during startup. That will cause mount to fail. Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Pos

Re: [yocto] recipe to clean up files from rootfs

2017-12-13 Thread Mike Looijmans
tended ${CORE_IMAGE_EXTRA_INSTALL}" #IMAGE_INSTALL = "${CORE_IMAGE}" #inherit core-image my_postprocess_function() {  rm -r ${D}${bindir}/init.d/psplash.sh } ROOTFS_POSTPROCESS_COMMAND += "my_postprocess_function; " On Wed, Dec 13, 2017 at 7:22 AM, Mike Looijma

Re: [yocto] recipe to clean up files from rootfs

2017-12-12 Thread Mike Looijmans
share it. ROOTFS_POSTPROCESS_COMMAND seems to be buggy. thank you On Tue, Dec 12, 2017 at 1:58 PM, Mike Looijmans <mike.looijm...@topic.nl <mailto:mike.looijm...@topic.nl>> wrote: On 11-12-17 15:18, Sherif Omran wrote: i want to create a recipe to clean som

Re: [yocto] recipe to clean up files from rootfs

2017-12-12 Thread Mike Looijmans
filesystem cleanup. However, in most cases it's much better to determine what recipe puts the files there and modify the recipe or remove the package. It would help a lot if you would reveal what files you want to remove and why. Kind regards, Mike Looijmans System Expert TOPIC Products

Re: [yocto] VPS for building and serving.

2017-12-11 Thread Mike Looijmans
e feed using rsync, or just use a script that copies the newer files over to the hosting. It's also a much better option security wise. Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79

Re: [yocto] RFC: Backwards compatibility checking sstate-cache

2017-09-25 Thread Mike Looijmans
On 23-09-17 00:51, Joshua Lock wrote: On 22/09/17 15:00, Mike Looijmans wrote: I think this remark in the referenced link is the best summary of "what could be improved": """the biggest weakness of the sstate signature bits, in my opinion, is that it only tracks inp

Re: [yocto] RFC: Backwards compatibility checking sstate-cache

2017-09-22 Thread Mike Looijmans
gericht: München HRB 134810 -- Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website

Re: [yocto] The basehash value changed from...

2017-09-07 Thread Mike Looijmans
> > Question: how to rebuild the complete deploy/images NOT deleting tmp/? It > compiled overall (in two steps) > 10h. Do I need to touch some file? > if you keep your sstate-cache directory then delete tmp/ dir is what you need to do. Rebuilding from sstate-cache i

Re: [yocto] release management

2017-08-15 Thread Mike Looijmans
tool"... Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the environment before printing t

Re: [yocto] What can I share between projects?

2017-05-20 Thread Mike Looijmans
On 19-05-17 13:47, Mike Looijmans wrote: On 19-05-17 03:43, Paul D. DeRocco wrote: If I'm doing multiple unrelated Yocto based projects, and they use the same version of Yocto, and the same metadata (except for my own layers), am I right in assuming that I can share everything in poky

Re: [yocto] What can I share between projects?

2017-05-19 Thread Mike Looijmans
for that. Our build server keeps a single sstate-cache for about 30 projects, with 4 versions of OE, 3 distros, and a dozen MACHINE configs. No problems encountered. Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon

Re: [yocto] [PATCHv2][meta-gplv2] gnutls: add older gnutls compatible with nettle

2017-04-25 Thread Mike Looijmans
nutls-3.3.27-r0 do_configure: QA Issue: gnutls: configure was passed unrecognised options: --with-idn [unknown-configure-option] +PACKAGECONFIG[libidn] = "" +# but it still has the libidn dependency, without this option +EXTRA_OECONF += "--disable-crywrap" + +# This version doesn

Re: [yocto] Install rootfs.tar.bz2 to ${D}/home/root/

2017-04-05 Thread Mike Looijmans
the same image, since that would recursively include itself, but you could make big-image.bb like this: require small-image.bb IMAGE_INSTALL += "big-project" Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefo

Re: [yocto] Current situation with gobject introspection? (off-topic)

2017-03-28 Thread Mike Looijmans
On 28-03-17 10:39, Burton, Ross wrote: Krogoth (2.1) isn't the latest, that's Morty (2.2) released in October 2016 and next month Pyro (2.3) is being released. So what happened to the missing two walker bots? :-) Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4

Re: [yocto] Changing over to systemd (no dhcp)

2017-01-23 Thread Mike Looijmans
. I would at least have expected network support to be enabled for any machine that has some networking features. Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm..

Re: [yocto] Changing over to systemd (no dhcp)

2017-01-23 Thread Mike Looijmans
On 21-01-17 13:41, Leon Woestenberg wrote: Hello Mike, On Fri, Jan 20, 2017 at 3:27 PM, Mike Looijmans <mike.looijm...@topic.nl <mailto:mike.looijm...@topic.nl>> wrote: An no one (except one of the systemd folks) has come up with a program that just waits for the t

Re: [yocto] Changing over to systemd (no dhcp)

2017-01-23 Thread Mike Looijmans
script and .service in its do_install, yet only one or the other ultimately shows up in the rootfs..? (Relates to my other question about how to determine the init type in do_install) I suspect that "inherit systemd" is taking care of that. Kind regards, Mike Looijmans Sys

Re: [yocto] Changing over to systemd (no dhcp)

2017-01-20 Thread Mike Looijmans
On 20-01-17 07:15, Michael Gloff wrote: Mike, On Thu, Jan 19, 2017 at 3:18 AM, Mike Looijmans <mike.looijm...@topic.nl <mailto:mike.looijm...@topic.nl>> wrote: On 18-01-17 16:10, colin.helliw...@ln-systems.com <mailto:colin.helliw...@ln-systems.com> wrote

Re: [yocto] Changing over to systemd (no dhcp)

2017-01-19 Thread Mike Looijmans
, but shutdown takes over 5 seconds...) Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the environment

Re: [yocto] Adding to inittab based on image content

2017-01-07 Thread Mike Looijmans
ta-virtualization/tree/recipes-c ore/sysvinit/sysvinit-inittab_2.88dsf.bbappend?h=dizzy - but the app isn't in DISTRO_FEATURES. (Right or wrong.., I include it in the image with a "CORE_IMAGE_EXTRA_INSTALL +=" in my image recipe). Any suggestions on how to make this inittab addition conditi

Re: [yocto] [meta-raspberrypi][PATCH 1/1] linux-rpi: clean .config in before do_configure step

2016-12-16 Thread Mike Looijmans
On 16-12-16 17:58, Khem Raj wrote: Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider

Re: [yocto] update mechanisms

2016-12-13 Thread Mike Looijmans
de'" Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the environment before pr

Re: [yocto] suggestions for version controlling multi-layer reproducible builds?

2016-12-13 Thread Mike Looijmans
ing in version management. The git hash is the "technical" version number. Create a table somewhere to map the commercial version number to a git hash. The simplest implementation is to "tag" the version numbers in the top-level repository. Kind regards, Mike Looijmans S

Re: [yocto] How to handle meta-intel/openembedded repos with multiple developers

2016-11-09 Thread Mike Looijmans
de tagging the non-company assets? Thanks for any help. Ed -- Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproduc

Re: [yocto] [sstate-cache] using sstate-cache in parallel builds

2016-11-03 Thread Mike Looijmans
builds just pointed to the same sstate-cache directory, so they could share whatever they want. Would that work? I'd think so, but never dared to actually make it so... Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon:

Re: [yocto] Big endian ARM machine with NEON wanted

2016-10-14 Thread Mike Looijmans
, maybe you can use a QEMU machine? Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the environment

Re: [yocto] Automating imaging building and testing, what aproach to use!?

2016-08-31 Thread Mike Looijmans
ds doing (send data and even executables, run shell commands, and get reliable feedback on process completion).One test PC can control multiple boards (each board needs two USB connectors in this setup).I'd also be interested to know what other projects are doing.   Kind regard

Re: [yocto] How to create a directory for an SD-Card mount?

2016-07-07 Thread Mike Looijmans
rhalten>> haben, informieren Sie bitte sofort den Absender und löschen Sie diese>> Nachricht. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser>> Mail>> ist nicht gestattet.>>>> This e-mail may contain confidential and/or privileged information. If you&g

Re: [yocto] Mounting USB drives on a "read-only-rootfs" based system

2016-06-15 Thread Mike Looijmans
go about configuring it? No, it's not related to autofs or aufs or whatever. It's plain simple udev or mdev. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: m

Re: [yocto] Mounting USB drives on a "read-only-rootfs" based system

2016-06-14 Thread Mike Looijmans
uto-mountable when a “read-only” image is specified by the build script? __ __ Thanks. __ __ -- Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 7

Re: [yocto] What's this

2016-06-08 Thread Mike Looijmans
what we need, yet another switch... M. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consi

Re: [yocto] Is There a Package Limit to use of Smart / RPM?

2016-05-30 Thread Mike Looijmans
4 233 7989 :: Fax +1 604 231 1109 :: Main +1 604 231 1100 13811 Wireless Way :: Richmond, BC Canada V6V 3A4 [M1] dwatk...@sierrawireless.com :: www.sierrawireless.com :: www.inmotiontechnology.com Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-56

Re: [yocto] How can I set a recipe that its binaries become available at cross-compile time?

2016-05-23 Thread Mike Looijmans
e in the PATH: DEPENDS += "dbus-c++-native" (though your moving of the binary into a "dbg" package might disturb that. I'd create a "utils" package for it) Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best P

Re: [yocto] How to enforce installation of image specific config file/package

2016-04-01 Thread Mike Looijmans
he config package RDEPEND on "A". Images that install the config (which they have to do anyway according to your description) will then automatically install "A" which at least accomplishes that you don't need to specify both. I've been in the same position, and it just

Re: [yocto] [PATCH][opkg-utils] opkg-build: Exit when fail to list files.

2016-04-01 Thread Mike Looijmans
uot;*** Error: Fail to list files have a UID greater than 99." + exit 1 + fi echo >&2 fi Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK B

Re: [yocto] FW: root password in a core-image-base without "debug-tweaks" ?

2015-10-12 Thread Mike Looijmans
openpli-image.bb#L45 Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 Telefax: +31 (0) 499 33 69 70 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please cons

Re: [yocto] tmp on NFS

2015-10-07 Thread Mike Looijmans
with concurrent file access, something else? Thanks, Luke Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 Telefax: +31 (0) 499 33 69 70 E-mail: mike.looijm...@topicproducts.com

Re: [yocto] [systemd-devel] How to automount

2015-09-24 Thread Mike Looijmans
On 23-09-15 12:09, Daniel. wrote: I think that sync just flushes data to disk and umount clears the dirty bit. There is no sync.vfat that I know. Em 23/09/2015 05:31, "Paul D. DeRocco" <pdero...@ix.netcom.com <mailto:pdero...@ix.netcom.com>> escreveu:

Re: [yocto] [systemd-devel] How to automount

2015-09-24 Thread Mike Looijmans
files and/or recipes and enlighten us! So far, all I ever got autofs to accomplish was giving me a major headache. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 Telefax: +31 (0

Re: [yocto] [systemd-devel] How to automount

2015-09-23 Thread Mike Looijmans
t;autofs" can accomplish this, but I've never met anyone who got that to actually work. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 Telefax: +31 (0) 499 33 69 7

Re: [yocto] Dumping sysvinit

2015-09-21 Thread Mike Looijmans
top things. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 Telefax: +31 (0) 499 33 69 70 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the e

Re: [yocto] Dumping sysvinit

2015-09-17 Thread Mike Looijmans
On 16-09-15 16:13, Andy Pont wrote: Ross wrote... Now to figure out why the tar.gz file for the root file system has grown from just under 3MiB to almost 15MiB! That would be systemd... it pulls in a lot of libraries that are fairly common on complex systems but on a minimal image less so.

Re: [yocto] I hate busybox!

2015-09-17 Thread Mike Looijmans
On 16-09-15 18:43, Paul D. DeRocco wrote: From: Mike Looijmans "Embedded" in my world is not about RAM or disk size. It's about building a device that has a set task in life, and nothing is as important as that one task. Whether that's running on an i7 or an M3 is irrelevant. Fo

Re: [yocto] I hate busybox!

2015-09-16 Thread Mike Looijmans
On 16-09-15 03:13, Khem Raj wrote: On Sep 15, 2015, at 7:47 AM, Trevor Woerner wrote: On 09/15/15 04:26, Paul D. DeRocco wrote: My embedded system has enough room in it for full-featured command line tools,... "Embedded" in my world is not about RAM or disk size. It's about

Re: [yocto] How to disable OVERRIDES temperally

2015-08-27 Thread Mike Looijmans
to disable the OVERRIDES temperally here? Or may be there is another way? This might work (untested): MY_HDRC_MODULE_NAME = conf_ci_hdrc module_${MY_HDRC_MODULE_NAME} = my configure Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus

Re: [yocto] Deploying 2 machines, u-boot does not include with both.

2015-08-17 Thread Mike Looijmans
On 16-08-15 09:39, Khem Raj wrote: Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 Telefax: +31 (0) 499 33 69 70 E-mail: mike.looijm...@topicproducts.com Website

Re: [yocto] Selecting different kernel inside an image recipe

2015-08-05 Thread Mike Looijmans
at. If there are examples for a more convenient way to switch kernels in a recipe rather than inside a .conf file, please point me to the right direction. Regards -Klaus Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL

Re: [yocto] Read-only file system with persistent storage

2015-07-20 Thread Mike Looijmans
have to use a fault-tolerant filesystem to store the rootfs. Dunno if it's possible to store a squashfs as a volume into ubi. The rest is similar to NOR. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best

Re: [yocto] armv7 firmware recipe in armv8 distro

2015-05-27 Thread Mike Looijmans
On 27-05-15 21:19, Joel (Xi Zhou) Zhou wrote: Hi all, We have a Yocto BSP based on arm64/aarch64 machine. On top of this, I need to create a firmware recipe, which need armv7 cross-compiler. So question is, how to support multiple toolchain in Yocto? Yocto/OE doesn't support multiple

Re: [yocto] creating images which include actively developed applications

2015-04-23 Thread Mike Looijmans
to this page using ten feet neon tubes. Seriously. People have been asking me this question over and over, and all I had to offer was some crappy scripts to invalidate and rebuild a package. Kind regards, Mike. Kind regards, Mike Looijmans System Expert TOPIC Embedded Products Eindhovenseweg 32-C

Re: [yocto] Yocto Kernel Module Workflow Question

2015-01-15 Thread Mike Looijmans
git format-patch to output the patches (into the bitbake recipe path). When you build the kernel, the git repo will contain your patches as commits. Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL

Re: [yocto] [meta-raspberrypi] Why not enable hard floating point?

2015-01-15 Thread Mike Looijmans
). Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: (+31) (0) 499 33 69 79 Telefax: (+31) (0) 499 33 69 70 E-mail: mike.looijm...@topic.nl Website: www.topic.nl Please

Re: [yocto] addiding external driver to minimal image

2014-12-21 Thread Mike Looijmans
: Hi How to add external driver (ex:TFT driver) to core-minimal-image. After building core -minimal-image, in case I need to add additional package to existing image, do i need to modify in .conf file and REBUILD IT..every time ? please clarify ! Thank you -- Mike Looijmans

Re: [yocto] parallel build of multiple machine/os?

2014-12-11 Thread Mike Looijmans
On 12/11/2014 08:42 PM, Mark Hatle wrote: On 12/11/14, 12:55 AM, Mike Looijmans wrote: On 12/10/2014 08:00 PM, Khem Raj wrote: On Dec 10, 2014, at 10:52 AM, Koehler, Yannick (HP Networking) yannick.koeh...@hp.com wrote: Can Yocto build for example in a single bitbake call an image for x86

Re: [yocto] parallel build of multiple machine/os?

2014-12-10 Thread Mike Looijmans
regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: (+31) (0) 499 33 69 79 Telefax: (+31) (0) 499 33 69 70 E-mail: mike.looijm...@topic.nl Website: www.topic.nl Please consider the environment before printing

Re: [yocto] External Linux Kernel Module

2014-12-10 Thread Mike Looijmans
vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: (+31) (0) 499 33 69 79 Telefax: (+31) (0) 499 33 69 70 E-mail: mike.looijm...@topic.nl Website: www.topic.nl Please consider

Re: [yocto] Support for writable files with a read-only root file system

2014-11-26 Thread Mike Looijmans
the default contents. I hope I'm making sense here. Thanks, Matt S. Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: (+31) (0) 499 33 69 79 Telefax: (+31) (0) 499 33 69 70 E-mail

Re: [yocto] sharing directories between users on same machine

2014-11-19 Thread Mike Looijmans
that differently? Thanks Urs Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK Best Telefoon: (+31) (0) 499 33 69 79 Telefax: (+31) (0) 499 33 69 70 E-mail: mike.looijm...@topic.nl Website

Re: [yocto] Sato image touchscreen calibration is borked

2014-11-16 Thread Mike Looijmans
On 11/13/2014 06:58 PM, Michael Gloff wrote: On Thu, Nov 13, 2014 at 7:28 AM, Burton, Ross ross.bur...@intel.com mailto:ross.bur...@intel.com wrote: Hi, On 13 November 2014 13:19, Mike Looijmans mike.looijm...@topic.nl mailto:mike.looijm...@topic.nl wrote: I've been using

[yocto] Sato image runs, but doesn't start its GUI

2014-11-13 Thread Mike Looijmans
application or so. Am I missing something, is this a bug, or is this expected behaviour and am I supposed to type some magic command first? Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Systems Eindhovenseweg 32-C, NL-5683 KH Best Postbus 440, NL-5680 AK

Re: [yocto] Sato image runs, but doesn't start its GUI

2014-11-13 Thread Mike Looijmans
On 11/13/2014 02:07 PM, Burton, Ross wrote: On 13 November 2014 12:59, Mike Looijmans mike.looijm...@topic.nl mailto:mike.looijm...@topic.nl wrote: I can't find anything that attempts to start anything. There's nothing in inittab, and there's nothing in rc3.d that resembles an attempt

[yocto] Sato image touchscreen calibration is borked

2014-11-13 Thread Mike Looijmans
On 11/13/2014 02:10 PM, Mike Looijmans wrote: Next challenge is to calibrate the touch screen... Hmm. That's a big disappointment. I've been using ts_calibrate in the past, and that worked just fine on this board. Sato uses an X application for this, and it's apparently borked or so

Re: [yocto] Sato image touchscreen calibration is borked

2014-11-13 Thread Mike Looijmans
On 11/13/2014 02:28 PM, Burton, Ross wrote: Hi, On 13 November 2014 13:19, Mike Looijmans mike.looijm...@topic.nl mailto:mike.looijm...@topic.nl wrote: I've been using ts_calibrate in the past, and that worked just fine on this board. Modern X servers don't use tslib, so this won't

Re: [yocto] Sato image touchscreen calibration is borked

2014-11-13 Thread Mike Looijmans
On 11/13/2014 02:54 PM, Mike Looijmans wrote: On 11/13/2014 02:28 PM, Burton, Ross wrote: Hi, On 13 November 2014 13:19, Mike Looijmans mike.looijm...@topic.nl mailto:mike.looijm...@topic.nl wrote: I've been using ts_calibrate in the past, and that worked just fine on this board

Re: [yocto] [OE-core] DNS when using Static IP

2014-05-02 Thread Mike Looijmans
. Is there something I'm missing here in my setup? -- /Tarek/ -- Mike Looijmans -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto