* imx53qsb + yocto + latest kernel.
@ 2014-06-26 3:33 ssinfod ssinfod
2014-07-02 14:50 ` ssinfod ssinfod
2014-07-02 16:14 ` Daiane Angolini
0 siblings, 2 replies; 9+ messages in thread
From: ssinfod ssinfod @ 2014-06-26 3:33 UTC (permalink / raw)
To: meta-freescale@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 2018 bytes --]
Hello, I am trying to build the core-image-base *with the latest kernel*
for the imx53qsb.
I modified local.conf file to add "PREFERRED_PROVIDER_virtual/kernel".
Here is my local.conf:
BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
MACHINE ??= 'imx53qsb'
DISTRO ?= 'poky'
*PREFERRED_PROVIDER_virtual/kernel = "linux-fslc"*
PACKAGE_CLASSES ?= "package_rpm"
EXTRA_IMAGE_FEATURES = "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS = "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K"
PACKAGECONFIG_pn-qemu-native = "sdl"
PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
ASSUME_PROVIDED += "libsdl-native"
CONF_VERSION = "1"
BB_NUMBER_THREADS = '1'
PARALLEL_MAKE = '-j 1'
DL_DIR ?= "${BSPDIR}/downloads/"
ACCEPT_FSL_EULA = ""
The bitbake of core-image-base when through without error.
However, the imx53qsb is not booting.
Here is the log from the serial console :
U-Boot 2014.01 (Jun 24 2014 - 04:01:10)
Board: MX53 LOCO
I2C: ready
DRAM: 1 GiB
MMC: FSL_SDHC: 0, FSL_SDHC: 1
*** Warning - bad CRC, using default environment
In: serial
Out: serial
Err: serial
CPU: Freescale i.MX53 family rev2.1 at 1000 MHz
Reset cause: POR
Net: FEC
Hit any key to stop autoboot: 0
mmc0 is current device
reading boot.scr
** Unable to read file boot.scr **
reading uImage
** Unable to read file uImage **
Booting from net ...
BOOTP broadcast 1
BOOTP broadcast 2
BOOTP broadcast 3
BOOTP broadcast 4
BOOTP broadcast 5
Retry count exceeded; starting again
BOOTP broadcast 1
It seems to be related to boot.scr and uImage..
I prepared the SD card like always with the dd command:
sudo dd if=core-image-base-imx53qsb.sdcard of=/dev/sdb bs=1M
Any idea of what is wrong ?
Thanks
ssinfod
[-- Attachment #2: Type: text/html, Size: 7789 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-06-26 3:33 imx53qsb + yocto + latest kernel ssinfod ssinfod
@ 2014-07-02 14:50 ` ssinfod ssinfod
2014-07-02 16:14 ` Daiane Angolini
1 sibling, 0 replies; 9+ messages in thread
From: ssinfod ssinfod @ 2014-07-02 14:50 UTC (permalink / raw)
To: meta-freescale@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 2301 bytes --]
Can somebody help me with my issue ?
Thanks
ssinfod
On Wed, Jun 25, 2014 at 11:33 PM, ssinfod ssinfod <ssinfod@gmail.com> wrote:
> Hello, I am trying to build the core-image-base *with the latest kernel*
> for the imx53qsb.
>
> I modified local.conf file to add "PREFERRED_PROVIDER_virtual/kernel".
>
> Here is my local.conf:
>
> BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
> PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
> MACHINE ??= 'imx53qsb'
> DISTRO ?= 'poky'
> *PREFERRED_PROVIDER_virtual/kernel = "linux-fslc"*
> PACKAGE_CLASSES ?= "package_rpm"
> EXTRA_IMAGE_FEATURES = "debug-tweaks"
> USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> PATCHRESOLVE = "noop"
> BB_DISKMON_DIRS = "\
> STOPTASKS,${TMPDIR},1G,100K \
> STOPTASKS,${DL_DIR},1G,100K \
> STOPTASKS,${SSTATE_DIR},1G,100K \
> ABORT,${TMPDIR},100M,1K \
> ABORT,${DL_DIR},100M,1K \
> ABORT,${SSTATE_DIR},100M,1K"
> PACKAGECONFIG_pn-qemu-native = "sdl"
> PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
> ASSUME_PROVIDED += "libsdl-native"
> CONF_VERSION = "1"
>
> BB_NUMBER_THREADS = '1'
> PARALLEL_MAKE = '-j 1'
>
> DL_DIR ?= "${BSPDIR}/downloads/"
> ACCEPT_FSL_EULA = ""
>
>
> The bitbake of core-image-base when through without error.
> However, the imx53qsb is not booting.
> Here is the log from the serial console :
>
> U-Boot 2014.01 (Jun 24 2014 - 04:01:10)
>
> Board: MX53 LOCO
> I2C: ready
> DRAM: 1 GiB
> MMC: FSL_SDHC: 0, FSL_SDHC: 1
> *** Warning - bad CRC, using default environment
>
> In: serial
> Out: serial
> Err: serial
> CPU: Freescale i.MX53 family rev2.1 at 1000 MHz
> Reset cause: POR
> Net: FEC
> Hit any key to stop autoboot: 0
> mmc0 is current device
> reading boot.scr
> ** Unable to read file boot.scr **
> reading uImage
> ** Unable to read file uImage **
> Booting from net ...
> BOOTP broadcast 1
> BOOTP broadcast 2
> BOOTP broadcast 3
> BOOTP broadcast 4
> BOOTP broadcast 5
>
> Retry count exceeded; starting again
> BOOTP broadcast 1
>
>
> It seems to be related to boot.scr and uImage..
> I prepared the SD card like always with the dd command:
> sudo dd if=core-image-base-imx53qsb.sdcard of=/dev/sdb bs=1M
>
> Any idea of what is wrong ?
>
> Thanks
> ssinfod
>
[-- Attachment #2: Type: text/html, Size: 7937 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-06-26 3:33 imx53qsb + yocto + latest kernel ssinfod ssinfod
2014-07-02 14:50 ` ssinfod ssinfod
@ 2014-07-02 16:14 ` Daiane Angolini
2014-07-03 5:42 ` ssinfod ssinfod
1 sibling, 1 reply; 9+ messages in thread
From: Daiane Angolini @ 2014-07-02 16:14 UTC (permalink / raw)
To: ssinfod ssinfod; +Cc: meta-freescale@yoctoproject.org
On Thu, Jun 26, 2014 at 12:33 AM, ssinfod ssinfod <ssinfod@gmail.com> wrote:
> Hello, I am trying to build the core-image-base with the latest kernel for
> the imx53qsb.
>
> I modified local.conf file to add "PREFERRED_PROVIDER_virtual/kernel".
I´m sorry, I missed your email last time
>
> Here is my local.conf:
>
> BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
> PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
> MACHINE ??= 'imx53qsb'
> DISTRO ?= 'poky'
> PREFERRED_PROVIDER_virtual/kernel = "linux-fslc"
In your build/tmp/work, do you have the uImage for the target version?
> PACKAGE_CLASSES ?= "package_rpm"
> EXTRA_IMAGE_FEATURES = "debug-tweaks"
> USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> PATCHRESOLVE = "noop"
> BB_DISKMON_DIRS = "\
> STOPTASKS,${TMPDIR},1G,100K \
> STOPTASKS,${DL_DIR},1G,100K \
> STOPTASKS,${SSTATE_DIR},1G,100K \
> ABORT,${TMPDIR},100M,1K \
> ABORT,${DL_DIR},100M,1K \
> ABORT,${SSTATE_DIR},100M,1K"
> PACKAGECONFIG_pn-qemu-native = "sdl"
> PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
> ASSUME_PROVIDED += "libsdl-native"
> CONF_VERSION = "1"
>
> BB_NUMBER_THREADS = '1'
> PARALLEL_MAKE = '-j 1'
>
> DL_DIR ?= "${BSPDIR}/downloads/"
> ACCEPT_FSL_EULA = ""
>
>
> The bitbake of core-image-base when through without error.
> However, the imx53qsb is not booting.
> Here is the log from the serial console :
>
> U-Boot 2014.01 (Jun 24 2014 - 04:01:10)
>
> Board: MX53 LOCO
> I2C: ready
> DRAM: 1 GiB
> MMC: FSL_SDHC: 0, FSL_SDHC: 1
> *** Warning - bad CRC, using default environment
>
> In: serial
> Out: serial
> Err: serial
> CPU: Freescale i.MX53 family rev2.1 at 1000 MHz
> Reset cause: POR
> Net: FEC
> Hit any key to stop autoboot: 0
> mmc0 is current device
> reading boot.scr
> ** Unable to read file boot.scr **
> reading uImage
> ** Unable to read file uImage **
It looks like a corrupted sdcard more than a kernel mistake. Into your
sdcard, do you have any kernel binary?
Daiane
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-07-02 16:14 ` Daiane Angolini
@ 2014-07-03 5:42 ` ssinfod ssinfod
2014-07-03 11:41 ` Daiane Angolini
0 siblings, 1 reply; 9+ messages in thread
From: ssinfod ssinfod @ 2014-07-03 5:42 UTC (permalink / raw)
To: Daiane Angolini, meta-freescale@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 3591 bytes --]
Hello,
I see the uImage file in my deploy folder. The details of this file are:
Folder: /home/dev/fsl-community-bsp/build/tmp/deploy/images/imx53qsb
File: uImage--3.14+git0+c34636a557-r0-imx53qsb-20140702201837.bin
However, I think there is a problem with the
"core-image-base-imx53qsb.sdcard"
Normally, with the 'old' kernel, I write this .sdcard and I have 2
partitions. (kernel and rootfs).
Now, when I use the line PREFERRED_PROVIDER_virtual/kernel = "linux-fslc",
it seems that the .sdcard doesn't have the kernel in it. It seems it only
has the rootfs in it.
Is that normal ? Is this happening because I am using the latest kernel ?
(linux-fslc)
Do I have to write both partitions manually ?
If so, how can I write the uImage and rootfs manually with the dd command ?
I have a final general question about the imx53:
Why the Freescale imx53 does not support the latest kernel by default ?
Right now, it seems to be a bad idea to use the imx53 since it currently
does not even support the latest kernel. What would it be in 5 years ?
Would it be stuck with kernel 2.6.35 ? Why Freescale is freezing the
support of the imx53 to that specific kernel ?
For a new design, should I use the Freescale imx6 instead of the imx53 ?
Thanks for your time,
ssinfod.
On Wed, Jul 2, 2014 at 12:14 PM, Daiane Angolini <daiane.list@gmail.com>
wrote:
> On Thu, Jun 26, 2014 at 12:33 AM, ssinfod ssinfod <ssinfod@gmail.com>
> wrote:
> > Hello, I am trying to build the core-image-base with the latest kernel
> for
> > the imx53qsb.
> >
> > I modified local.conf file to add "PREFERRED_PROVIDER_virtual/kernel".
>
> I´m sorry, I missed your email last time
>
>
> >
> > Here is my local.conf:
> >
> > BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
> > PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
> > MACHINE ??= 'imx53qsb'
> > DISTRO ?= 'poky'
> > PREFERRED_PROVIDER_virtual/kernel = "linux-fslc"
>
> In your build/tmp/work, do you have the uImage for the target version?
>
> > PACKAGE_CLASSES ?= "package_rpm"
> > EXTRA_IMAGE_FEATURES = "debug-tweaks"
> > USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> > PATCHRESOLVE = "noop"
> > BB_DISKMON_DIRS = "\
> > STOPTASKS,${TMPDIR},1G,100K \
> > STOPTASKS,${DL_DIR},1G,100K \
> > STOPTASKS,${SSTATE_DIR},1G,100K \
> > ABORT,${TMPDIR},100M,1K \
> > ABORT,${DL_DIR},100M,1K \
> > ABORT,${SSTATE_DIR},100M,1K"
> > PACKAGECONFIG_pn-qemu-native = "sdl"
> > PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
> > ASSUME_PROVIDED += "libsdl-native"
> > CONF_VERSION = "1"
> >
> > BB_NUMBER_THREADS = '1'
> > PARALLEL_MAKE = '-j 1'
> >
> > DL_DIR ?= "${BSPDIR}/downloads/"
> > ACCEPT_FSL_EULA = ""
> >
> >
> > The bitbake of core-image-base when through without error.
> > However, the imx53qsb is not booting.
> > Here is the log from the serial console :
> >
> > U-Boot 2014.01 (Jun 24 2014 - 04:01:10)
> >
> > Board: MX53 LOCO
> > I2C: ready
> > DRAM: 1 GiB
> > MMC: FSL_SDHC: 0, FSL_SDHC: 1
> > *** Warning - bad CRC, using default environment
> >
> > In: serial
> > Out: serial
> > Err: serial
> > CPU: Freescale i.MX53 family rev2.1 at 1000 MHz
> > Reset cause: POR
> > Net: FEC
> > Hit any key to stop autoboot: 0
> > mmc0 is current device
> > reading boot.scr
> > ** Unable to read file boot.scr **
> > reading uImage
> > ** Unable to read file uImage **
>
> It looks like a corrupted sdcard more than a kernel mistake. Into your
> sdcard, do you have any kernel binary?
>
> Daiane
>
[-- Attachment #2: Type: text/html, Size: 4893 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-07-03 5:42 ` ssinfod ssinfod
@ 2014-07-03 11:41 ` Daiane Angolini
2014-07-03 13:21 ` Daiane Angolini
0 siblings, 1 reply; 9+ messages in thread
From: Daiane Angolini @ 2014-07-03 11:41 UTC (permalink / raw)
To: ssinfod ssinfod; +Cc: meta-freescale@yoctoproject.org
On Thu, Jul 3, 2014 at 2:42 AM, ssinfod ssinfod <ssinfod@gmail.com> wrote:
> Hello,
> I see the uImage file in my deploy folder. The details of this file are:
> Folder: /home/dev/fsl-community-bsp/build/tmp/deploy/images/imx53qsb
> File: uImage--3.14+git0+c34636a557-r0-imx53qsb-20140702201837.bin
>
> However, I think there is a problem with the
> "core-image-base-imx53qsb.sdcard"
>
> Normally, with the 'old' kernel, I write this .sdcard and I have 2
> partitions. (kernel and rootfs).
>
> Now, when I use the line PREFERRED_PROVIDER_virtual/kernel = "linux-fslc",
> it seems that the .sdcard doesn't have the kernel in it. It seems it only
> has the rootfs in it.
>
> Is that normal ?
no
> Is this happening because I am using the latest kernel ?
no
> (linux-fslc)
> Do I have to write both partitions manually ?
no
> If so, how can I write the uImage and rootfs manually with the dd command ?
try this
https://community.freescale.com/docs/DOC-94989
>
>
> I have a final general question about the imx53:
> Why the Freescale imx53 does not support the latest kernel by default ?
This mailing list is driven by community. The goals, strategies and
decisions made by Freescale cannot be replied here.
Historically we can note that freescale works with kernel releases,
and only provide support for those well-known kernel releases.
If this information is not enough for you, please, create a SR or use
imx.community.
>
> Right now, it seems to be a bad idea to use the imx53 since it currently
> does not even support the latest kernel.
The question is "is the chip what you're looking for?" and not "how
can I get support for this kernel"
There is a huge list of freescale partners that can provide to you a
shining kernel.
> What would it be in 5 years ?
Probably, in 5 years, cars will be flying. I hope they have the
teleportation prototype.
> Would it be stuck with kernel 2.6.35 ?
The "Released Linux Kernel by Freescale" is 2.6.35. It does not mean
you do need the "Freescale support"
>Why Freescale is freezing the support of
> the imx53 to that specific kernel ?
It's a support strategy choice. Please, create a SR or use imx.community
>
> For a new design, should I use the Freescale imx6 instead of the imx53 ?
It depends on your project, your goal. It depends on several things, even price.
Maybe, what you need is a talk with a local freescale representative.
Have you ever talked with a FAE?
Daiane
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-07-03 11:41 ` Daiane Angolini
@ 2014-07-03 13:21 ` Daiane Angolini
2014-07-03 16:48 ` Trevor Woerner
0 siblings, 1 reply; 9+ messages in thread
From: Daiane Angolini @ 2014-07-03 13:21 UTC (permalink / raw)
To: ssinfod ssinfod; +Cc: meta-freescale@yoctoproject.org
On Thu, Jul 3, 2014 at 8:41 AM, Daiane Angolini <daiane.list@gmail.com> wrote:
> On Thu, Jul 3, 2014 at 2:42 AM, ssinfod ssinfod <ssinfod@gmail.com> wrote:
>> Hello,
>> I see the uImage file in my deploy folder. The details of this file are:
>> Folder: /home/dev/fsl-community-bsp/build/tmp/deploy/images/imx53qsb
>> File: uImage--3.14+git0+c34636a557-r0-imx53qsb-20140702201837.bin
>>
>> However, I think there is a problem with the
>> "core-image-base-imx53qsb.sdcard"
>>
>> Normally, with the 'old' kernel, I write this .sdcard and I have 2
>> partitions. (kernel and rootfs).
>>
>> Now, when I use the line PREFERRED_PROVIDER_virtual/kernel = "linux-fslc",
>> it seems that the .sdcard doesn't have the kernel in it. It seems it only
>> has the rootfs in it.
>>
>> Is that normal ?
>
> no
>
>> Is this happening because I am using the latest kernel ?
>
> no
>
>> (linux-fslc)
>> Do I have to write both partitions manually ?
>
> no
>
Only to make sure I tried to reproduce it over here, using master
branch synch-ed today. And it works over here
root@imx53qsb:~# uname -a
Linux imx53qsb 3.14.3-fslc+gc34636a #1 SMP Thu Jul 3 09:49:36 BRT 2014
armv7l GNU/Linux
And, a piece of the boot:
U-Boot 2014.01 (Jul 03 2014 - 09:43:34)
Board: MX53 LOCO
I2C: ready
DRAM: 1 GiB
MMC: FSL_SDHC: 0, FSL_SDHC: 1
*** Warning - bad CRC, using default environment
In: serial
Out: serial
Err: serial
CPU: Freescale i.MX53 family rev2.1 at 1000 MHz
Reset cause: POR
Net: FEC
Hit any key to stop autoboot: 0
mmc0 is current device
reading boot.scr
** Unable to read file boot.scr **
reading uImage
5012624 bytes read in 306 ms (15.6 MiB/s)
Booting from mmc ...
reading imx53-qsb.dtb
24429 bytes read in 21 ms (1.1 MiB/s)
## Booting kernel from Legacy Image at 72000000 ...
Image Name: Linux-3.14.3-fslc+gc34636a
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 5012560 Bytes = 4.8 MiB
Load Address: 70008000
Entry Point: 70008000
Verifying Checksum ... OK
## Flattened Device Tree blob at 71000000
Booting using the fdt blob at 0x71000000
Loading Kernel Image ... OK
Loading Device Tree to 8fff7000, end 8fffff6c ... OK
Starting kernel ...
Booting Linux on physical CPU 0x0
Linux version 3.14.3-fslc+gc34636a (daiane@b19406) (gcc version 4.9.0
(GCC) ) #1 SMP Thu Jul 3 09:49:36 BRT 2014
CPU: ARMv7 Processor [412fc085] revision 5 (ARMv7), cr=10c5387d
CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-07-03 13:21 ` Daiane Angolini
@ 2014-07-03 16:48 ` Trevor Woerner
2014-07-04 4:40 ` ssinfod ssinfod
0 siblings, 1 reply; 9+ messages in thread
From: Trevor Woerner @ 2014-07-03 16:48 UTC (permalink / raw)
To: ssinfod ssinfod; +Cc: meta-freescale@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 1735 bytes --]
On 07/03/14 09:21, Daiane Angolini wrote:
> Only to make sure I tried to reproduce it over here, using master
> branch synch-ed today. And it works over here
>
> root@imx53qsb:~# uname -a
> Linux imx53qsb 3.14.3-fslc+gc34636a #1 SMP Thu Jul 3 09:49:36 BRT 2014
> armv7l GNU/Linux
I also ran my own tests too and it seems to work fine as well.
When reporting an issue, please mention which branches and target you're
using. Conversely you could just paste in the top couple lines from the
build (the ones which indicate the build configuration).
Working from the master branches, I tried a build using my default
settings and this worked fine. Then I deleted tmp and sstate-cache,
replaced my configuration with yours, and rebuilt. This too was able to
build, dd, and boot just fine.
For example, after the "dd" step I get:
# fdisk -l /dev/sde
Disk /dev/sde: 7948 MB, 7948206080 bytes, 15523840 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0003c24a
Device Boot Start End Blocks Id System
/dev/sde1 8192 24575 8192 c W95 FAT32 (LBA)
/dev/sde2 24576 155647 65536 83 Linux
And the last couple lines of the boot plus login and uname:
Poky (Yocto Project Reference Distro) 1.6+snapshot-20140703 imx53qsb
/dev/ttymxc0
imx53qsb login: root
root@imx53qsb:~# uname -a
Linux imx53qsb 3.14.3-fslc+gc34636a #1 SMP Thu Jul 3 11:58:45 EDT
2014 armv7l GNU/Linux
See the attached for my full configurations.
[-- Attachment #2: IMX53QSB-notes --]
[-- Type: text/plain, Size: 4210 bytes --]
Build Configuration: (master)
BB_VERSION = "1.23.1"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "openSUSE-project-13.1"
TARGET_SYS = "arm-poky-linux-gnueabi"
MACHINE = "imx53qsb"
DISTRO = "poky"
DISTRO_VERSION = "1.6+snapshot-20140702"
TUNE_FEATURES = "arm armv7a vfp neon"
TARGET_FPU = "vfp-neon"
meta
meta-yocto = "(detachedfrom0ed5a13):0ed5a13f5f9478e2c22f517fb3504b738422f85c"
meta-oe = "(detachedfrom87bbe91):87bbe91686e1bbc9036aacd924162f17db214aad"
meta-fsl-arm = "(detachedfrom31a0928):31a0928cbbe707548712ec3612cdc727a3775501"
meta-fsl-arm-extra = "(detachedfrom456c270):456c27085a70bb1385a4c2e28ba80ac74d6f533e"
meta-fsl-demos = "(detachedfrom1dbdf42):1dbdf427189707062749928b8876e38f1ec99c64"
BB_NUMBER_THREADS = '6'
PARALLEL_MAKE = '-j 6'
DL_DIR ?= "/home/trevor/devel/Downloads"
ACCEPT_FSL_EULA = "1"
BUILDBASE = "/home/trevor/build/yocto/fsl/repo-master/${MACHINE}"
TMPDIR = "${BUILDBASE}/tmp"
SSTATE_DIR = "${BUILDBASE}/sstate-cache"
MACHINE ??= 'imx53qsb'
DISTRO ?= 'poky'
PACKAGE_CLASSES ?= "package_ipk"
EXTRA_IMAGE_FEATURES = "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS = "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K"
PACKAGECONFIG_pn-qemu-native = "sdl"
PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
ASSUME_PROVIDED += "libsdl-native"
CONF_VERSION = "1"
INHERIT += "buildhistory"
BUILDHISTORY_COMMIT = "1"
===========================================================================
Build Configuration:
BB_VERSION = "1.23.1"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "openSUSE-project-13.1"
TARGET_SYS = "arm-poky-linux-gnueabi"
MACHINE = "imx53qsb"
DISTRO = "poky"
DISTRO_VERSION = "1.6+snapshot-20140703"
TUNE_FEATURES = "arm armv7a vfp neon"
TARGET_FPU = "vfp-neon"
meta
meta-yocto = "(detachedfrom0ed5a13):0ed5a13f5f9478e2c22f517fb3504b738422f85c"
meta-oe = "(detachedfrom87bbe91):87bbe91686e1bbc9036aacd924162f17db214aad"
meta-fsl-arm = "(detachedfrom31a0928):31a0928cbbe707548712ec3612cdc727a3775501"
meta-fsl-arm-extra = "(detachedfrom456c270):456c27085a70bb1385a4c2e28ba80ac74d6f533e"
meta-fsl-demos = "(detachedfrom1dbdf42):1dbdf427189707062749928b8876e38f1ec99c64"
BB_NUMBER_THREADS = '6'
PARALLEL_MAKE = '-j 6'
DL_DIR ?= "/home/trevor/devel/Downloads"
ACCEPT_FSL_EULA = ""
PREFERRED_PROVIDER_virtual/kernel = "linux-fslc"
BUILDBASE = "/home/trevor/build/yocto/fsl/repo-master/${MACHINE}"
TMPDIR = "${BUILDBASE}/tmp"
SSTATE_DIR = "${BUILDBASE}/sstate-cache"
MACHINE ??= 'imx53qsb'
DISTRO ?= 'poky'
PACKAGE_CLASSES ?= "package_rpm"
EXTRA_IMAGE_FEATURES = "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS = "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K"
PACKAGECONFIG_pn-qemu-native = "sdl"
PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
ASSUME_PROVIDED += "libsdl-native"
CONF_VERSION = "1"
INHERIT += "buildhistory"
BUILDHISTORY_COMMIT = "1"
# fdisk -l /dev/sde
Disk /dev/sde: 7948 MB, 7948206080 bytes, 15523840 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0003c24a
Device Boot Start End Blocks Id System
/dev/sde1 8192 24575 8192 c W95 FAT32 (LBA)
/dev/sde2 24576 155647 65536 83 Linux
Poky (Yocto Project Reference Distro) 1.6+snapshot-20140703 imx53qsb /dev/ttymxc0
imx53qsb login: root
root@imx53qsb:~# uname -a
Linux imx53qsb 3.14.3-fslc+gc34636a #1 SMP Thu Jul 3 11:58:45 EDT 2014 armv7l GNU/Linux
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-07-03 16:48 ` Trevor Woerner
@ 2014-07-04 4:40 ` ssinfod ssinfod
2014-07-04 12:32 ` Daiane Angolini
0 siblings, 1 reply; 9+ messages in thread
From: ssinfod ssinfod @ 2014-07-04 4:40 UTC (permalink / raw)
To: Trevor Woerner, angolini; +Cc: meta-freescale@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 2330 bytes --]
Hello,
I copied the .sdcard to windows and I used Win32DiskImager.exe and it
worked...
It seems something was wrong with my dd command. (I'm using a VM (ubuntu
14.04) and maybe I did not mount the micro sd card correctly..)
Anyway, I confirm that it's working with the daisy branch...
Thanks to both of you for taking the time to test it... I hope it did not
take too much time.
Greetings,
ssinfod.
On Thu, Jul 3, 2014 at 12:48 PM, Trevor Woerner <trevor.woerner@linaro.org>
wrote:
> On 07/03/14 09:21, Daiane Angolini wrote:
> > Only to make sure I tried to reproduce it over here, using master
> > branch synch-ed today. And it works over here
> >
> > root@imx53qsb:~# uname -a
> > Linux imx53qsb 3.14.3-fslc+gc34636a #1 SMP Thu Jul 3 09:49:36 BRT 2014
> > armv7l GNU/Linux
>
> I also ran my own tests too and it seems to work fine as well.
>
> When reporting an issue, please mention which branches and target you're
> using. Conversely you could just paste in the top couple lines from the
> build (the ones which indicate the build configuration).
>
> Working from the master branches, I tried a build using my default
> settings and this worked fine. Then I deleted tmp and sstate-cache,
> replaced my configuration with yours, and rebuilt. This too was able to
> build, dd, and boot just fine.
>
> For example, after the "dd" step I get:
>
> # fdisk -l /dev/sde
>
> Disk /dev/sde: 7948 MB, 7948206080 bytes, 15523840 sectors
> Units = sectors of 1 * 512 = 512 bytes
> Sector size (logical/physical): 512 bytes / 512 bytes
> I/O size (minimum/optimal): 512 bytes / 512 bytes
> Disk label type: dos
> Disk identifier: 0x0003c24a
>
> Device Boot Start End Blocks Id System
> /dev/sde1 8192 24575 8192 c W95 FAT32 (LBA)
> /dev/sde2 24576 155647 65536 83 Linux
>
>
> And the last couple lines of the boot plus login and uname:
>
> Poky (Yocto Project Reference Distro) 1.6+snapshot-20140703 imx53qsb
> /dev/ttymxc0
>
> imx53qsb login: root
> root@imx53qsb:~# uname -a
> Linux imx53qsb 3.14.3-fslc+gc34636a #1 SMP Thu Jul 3 11:58:45 EDT
> 2014 armv7l GNU/Linux
>
> See the attached for my full configurations.
>
[-- Attachment #2: Type: text/html, Size: 3012 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: imx53qsb + yocto + latest kernel.
2014-07-04 4:40 ` ssinfod ssinfod
@ 2014-07-04 12:32 ` Daiane Angolini
0 siblings, 0 replies; 9+ messages in thread
From: Daiane Angolini @ 2014-07-04 12:32 UTC (permalink / raw)
To: ssinfod ssinfod; +Cc: meta-freescale@yoctoproject.org
> Thanks to both of you for taking the time to test it... I hope it did not
> take too much time.
No problem at all. imx53qsb is one of my preferred board and I don´t
want to have a bug on this.
Daiane
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-07-04 12:32 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-26 3:33 imx53qsb + yocto + latest kernel ssinfod ssinfod
2014-07-02 14:50 ` ssinfod ssinfod
2014-07-02 16:14 ` Daiane Angolini
2014-07-03 5:42 ` ssinfod ssinfod
2014-07-03 11:41 ` Daiane Angolini
2014-07-03 13:21 ` Daiane Angolini
2014-07-03 16:48 ` Trevor Woerner
2014-07-04 4:40 ` ssinfod ssinfod
2014-07-04 12:32 ` Daiane Angolini
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.