Re: [yocto] can't pull any sources anymore

2015-01-12 Thread Matthias.Heise
] Gesendet: Montag, 12. Januar 2015 14:04 An: Heise, Matthias Cc: s...@linux.intel.com; yocto@yoctoproject.org Betreff: Re: [yocto] can't pull any sources anymore * matthias.he...@atlas-elektronik.com Matthias.Heise@atlas- elektronik.com [150112 08:22]: thanks for your reply, I'm running

Re: [yocto] can't pull any sources anymore

2015-01-11 Thread Matthias.Heise
Hello Saul, thanks for your reply, I'm running the repo init command as in many tutorials, this is the line : repo init -u https://github.com/Freescale/fsl-community-bsp-platform -b dizzy after the init I find following in the manifest.xml : ?xml version=1.0 encoding=UTF-8? manifest

[yocto] can't pull any sources anymore

2015-01-09 Thread Matthias.Heise
Hi, I'm not able to pull any sources for a little time now. As test I re-tried an already working setup by again following some tutorial and trying to setup a fresh repo. The repo init works but the sync fails. I should mention that due to network limitations I replace git:// urls with

Re: [yocto] nfs-boot problem

2014-12-10 Thread Matthias.Heise
Hello Jim, thank you for your reply, yes in the meantime I found out why that nfsroot path isn't set correctly, there is a wrong line in the wandboard.h in u-boot. Now the regarding line looks like this Kernel command line: console=ttymxc0,115200 root=/dev/nfs ip=dhcp

Re: [yocto] nfs-boot problem

2014-12-10 Thread Matthias.Heise
Update : 1. I added a rw obviously at the right place as the nfs filesystem isn't marked as read-only anymore. Still there obviously is some write/rights issue as I get a lot of permission-related logs. (see below) 2. About the rootfs : I tried the unpacked filesystem from the

Re: [yocto] nfs-boot problem

2014-12-10 Thread Matthias.Heise
Matthias.Heise@atlas- elektronik.com [141210 09:35]: As to the rootfs, this folder fsl-community-bsp/build/tmp/work/wandboard_quad-poky-linux- gnueabi/cor e-image-minimal/1.0-r0/rootfs seems to be exactly the structure that is packed into the image.tar.bz2 so I thought it is a good idea

Re: [yocto] nfs-boot problem

2014-12-10 Thread Matthias.Heise
Matthias.Heise@atlas- elektronik.com [141210 11:48]: -Ursprüngliche Nachricht- Von: Anders Darander [mailto:and...@chargestorm.se] Gesendet: Mittwoch, 10. Dezember 2014 11:24 An: Heise, Matthias Cc: j...@spectralogic.com; yocto@yoctoproject.org Betreff: Re: [yocto] nfs-boot problem

[yocto] nfs-boot problem

2014-12-09 Thread Matthias.Heise
Hello, I'm struggling getting my wandboard booting via tftp/nfs. The first part was easy I just set up the tftp server and pointed it to the kernel image and *.dtb file, in the wandboard.h of u-boot I set #define CONFIG_BOOTCOMMAND \ run netboot; The kernel

Re: [yocto] u-boot precompiled ?

2014-12-08 Thread Matthias.Heise
-Ursprüngliche Nachricht- Von: yocto-boun...@yoctoproject.org [mailto:yocto- boun...@yoctoproject.org] Im Auftrag von Gary Thomas Gesendet: Freitag, 5. Dezember 2014 15:22 An: yocto@yoctoproject.org Betreff: Re: [yocto] u-boot precompiled ? On 2014-12-05 05:48,

Re: [yocto] u-boot precompiled ?

2014-12-05 Thread Matthias.Heise
Hello Matt, thanks very much for your reply, I was able to create a simple patch changing an u-boot setting as test and bbappended it. I just didn't believe before that the various u-boot settings are hard-coded but they obviously are in the board.h, so patching it seems to be the only way for

Re: [yocto] u-boot precompiled ?

2014-12-04 Thread Matthias.Heise
Even if this is a stupid question a little advise would be nice ... like don't ask so stupid questions, go read this and that or something... no time ? Should I rather unsubscribe from this list until I'm an expert? Von: Heise, Matthias Gesendet: Mittwoch, 3. Dezember 2014 15:15 An:

[yocto] u-boot precompiled ?

2014-12-03 Thread Matthias.Heise
Hi all, I'm still trying to find out basic things about getting a system up and running. This question is about U-Boot, is it right that for example for my wandboard a pre-compiled *.imx is just downloaded ? So if I want to make settings to U-Boot I make them directly in the source, compile it

Re: [yocto] do_fetch linux hangs after defconfig/conf-fragment change

2014-12-01 Thread Matthias.Heise
-Ursprüngliche Nachricht- Von: Samuel Stirtzel [mailto:s.stirt...@googlemail.com] Gesendet: Freitag, 28. November 2014 14:24 An: Heise, Matthias Cc: yocto@yoctoproject.org Betreff: Re: [yocto] do_fetch linux hangs after defconfig/conf-fragment change 2014-11-28 14:09 GMT+01:00

Re: [yocto] add a user via recipe

2014-12-01 Thread Matthias.Heise
Hi ChenQui, thanks very much for your reply, the ROOTFS_POSTPROCESS_COMMAND does work now with useradd -root ${IMAGE_ROOTFS} -p . as you suggested However with the EXTRA_USERS_PARAMS the user is now added (thanks to the removed typo) but I can't add a valid password, neither encrypted nor

Re: [yocto] add a user via recipe

2014-12-01 Thread Matthias.Heise
Ok, the EXTRA_USERS_PARAMS method now also works, it was the typo with USER and USERS and an encrypted password with ' ' around it which is needed, strangely the encrypted string for one and the same password all of a sudden was different, after re-generating it, it worked Von:

[yocto] how to start with custom interface/driver

2014-12-01 Thread Matthias.Heise
Hi all, I'm aware of the fact, that this is probably not the right point to ask, but maybe you still can give me some hints and/or point me to the right place to ask. What I would like to do is to connect a certain interface-chip to the freescale imx6. I have a wandboard which doesn't use it,

[yocto] do_fetch linux hangs after defconfig/conf-fragment change

2014-11-28 Thread Matthias.Heise
Hi all, I'm quite new to yocto and currently am playing around with all kinds of basic functions and procedures of yocto to step by step learn and get to know yocto and bitbake. Currently I'm trying to store the kernel config settings in some way in my layer to have it modular. So I read about

Re: [yocto] do_fetch linux hangs after defconfig/conf-fragment change

2014-11-28 Thread Matthias.Heise
-Ursprüngliche Nachricht- Von: Samuel Stirtzel [mailto:s.stirt...@googlemail.com] Gesendet: Freitag, 28. November 2014 11:09 An: Heise, Matthias Cc: yocto@yoctoproject.org Betreff: Re: [yocto] do_fetch linux hangs after defconfig/conf-fragment change 2014-11-28 10:29 GMT+01:00

Re: [yocto] do_fetch linux hangs after defconfig/conf-fragment change

2014-11-28 Thread Matthias.Heise
-Ursprüngliche Nachricht- Von: Samuel Stirtzel [mailto:s.stirt...@googlemail.com] Gesendet: Freitag, 28. November 2014 13:55 An: Heise, Matthias Cc: yocto@yoctoproject.org Betreff: Re: [yocto] do_fetch linux hangs after defconfig/conf-fragment change 2014-11-28 11:29 GMT+01:00