All of lore.kernel.org
 help / color / mirror / Atom feed
* ListServ & yocto on ppc
@ 2016-11-17 16:24 Willis Hampton
  2016-11-18 19:02 ` Fabio Berton
  0 siblings, 1 reply; 2+ messages in thread
From: Willis Hampton @ 2016-11-17 16:24 UTC (permalink / raw)
  To: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 2501 bytes --]

Hi guys,

I work part-time as IT Support for the CIS dept of the university I
attend. I have asked for membership in the listserv and it has not been
granted yet. One of the professors had a freescale t4240qds that was
used for application development. It went down for some unknown reason
about 9 months ago. The previous tech that worked on it broke the sd
card that contained the yocto 1.4 sdk with embedded linux that came with
the box. I've accessed the box via minicom to find that it is the oddest
pc i have EVER worked with. It has a hardrive, yet was supposed to boot
off of the (now broken)SD card. ????? (Why in the world would that be
so? not my primary question).

This t4240qds has been unused for 9 months as no-one has been able to
figure out how to get a development environment/operating system on it. 


I've followed the following tutorial t4240qds yocto tut. to no avail.
The link for SDK 1.4 in that article is dead. Searching NXP site, I
found QorIQ-SDK-V1.4-Source.iso to use in place of QorIQ Linux SDK v1.4
Yocto Source ISO. I get to the bitbake and this happens:

whampt@whampt:/home/yocto/build_t4240qds_release$ bitbake fsl-image-core
Pseudo is not present but is required, building this first before the
main build
WARNING: Host distribution "CentOS-7.2.1511" has not been validated with
this version of the build system; you may possibly experience unexpected
failures. It is recommended that you use a tested distribution.
Loading cache: 100% |
#################################################################################################################################| ETA:  00:00:00
Loaded 1154 entries from dependency cache.
ERROR: No recipes available for:
  /home/yocto/meta-fsl-ppc/recipes-devtools/tclap/tclap_1.2.1.bbappend
ERROR: Command execution failed: Exited with 1





The contents of bblayers.conf


# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly
LCONF_VERSION = "6"

BBPATH = "${TOPDIR}"
BBFILES ?= ""

BBLAYERS ?= " \
  /home/yocto/meta \
  /home/yocto/meta-yocto \
  /home/yocto/meta-yocto-bsp \
  /home/yocto/meta-fsl-ppc \
  "
BBLAYERS_NON_REMOVABLE ?= " \
  /home/yocto/meta \
  /home/yocto/meta-yocto \
  " 

Please help me understand what went wrong here. 

Thanks,


-- 
Will Hampton

Computer Information Systems

Student Assistant

UAB| University of Alabama at Birmingham

Contact: (205)396-5816 | whampt@uab.edu


[-- Attachment #2: Type: text/html, Size: 3224 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: ListServ & yocto on ppc
  2016-11-17 16:24 ListServ & yocto on ppc Willis Hampton
@ 2016-11-18 19:02 ` Fabio Berton
  0 siblings, 0 replies; 2+ messages in thread
From: Fabio Berton @ 2016-11-18 19:02 UTC (permalink / raw)
  To: whampt; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 3404 bytes --]

Hi Will,

You need to add meta-oe to your bblayers.

The line:

ERROR: No recipes available for:
  /home/yocto/meta-fsl-ppc/recipes-devtools/tclap/tclap_1.2.1.bbappend

shows that tclap recipe it's been appended and you need tclap recipe. Layer
meta-openembedded/meta-oe has this recipe.
So, you need to clone git://git.openembedded.org/meta-openembedded and add
/home/yocto/meta-openembedded/meta-oe to BBLAYERS variable in bblayers.conf
file.

On Thu, Nov 17, 2016 at 2:24 PM, Willis Hampton <whampt@uab.edu> wrote:

> Hi guys,
>
> I work part-time as IT Support for the CIS dept of the university I
> attend. I have asked for membership in the listserv and it has not been
> granted yet. One of the professors had a freescale t4240qds that was used
> for application development. It went down for some unknown reason about 9
> months ago. The previous tech that worked on it broke the sd card that
> contained the yocto 1.4 sdk with embedded linux that came with the box.
> I've accessed the box via minicom to find that it is the oddest pc i have
> EVER worked with. It has a hardrive, yet was supposed to boot off of the
> (now broken)SD card. ????? (Why in the world would that be so? not my
> primary question).
>
> This t4240qds has been unused for 9 months as no-one has been able to
> figure out how to get a development environment/operating system on it.
>
>
> I've followed the following tutorial t4240qds yocto tut.
> <https://community.nxp.com/docs/DOC-99961> to no avail. The link for SDK
> 1.4 in that article is dead. Searching NXP site, I found
> QorIQ-SDK-V1.4-Source.iso to use in place of *QorIQ Linux SDK v1.4 Yocto
> Source ISO*. I get to the bitbake and this happens:
>
> whampt@whampt:/home/yocto/build_t4240qds_release$ bitbake fsl-image-core
> Pseudo is not present but is required, building this first before the main
> build
> WARNING: Host distribution "CentOS-7.2.1511" has not been validated with
> this version of the build system; you may possibly experience unexpected
> failures. It is recommended that you use a tested distribution.
> Loading cache: 100% |#############################
> ############################################################
> ########################################| ETA:  00:00:00
> Loaded 1154 entries from dependency cache.
> ERROR: No recipes available for:
>   /home/yocto/meta-fsl-ppc/recipes-devtools/tclap/tclap_1.2.1.bbappend
> ERROR: Command execution failed: Exited with 1
>
>
>
>
>
> The contents of bblayers.conf
>
>
> # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
> # changes incompatibly
> LCONF_VERSION = "6"
>
> BBPATH = "${TOPDIR}"
> BBFILES ?= ""
>
> BBLAYERS ?= " \
>   /home/yocto/meta \
>   /home/yocto/meta-yocto \
>   /home/yocto/meta-yocto-bsp \
>   /home/yocto/meta-fsl-ppc \
>   "
> BBLAYERS_NON_REMOVABLE ?= " \
>   /home/yocto/meta \
>   /home/yocto/meta-yocto \
>   "
>
> Please help me understand what went wrong here.
>
> Thanks,
>
>
> --
> Will Hampton
>
> Computer Information Systems
>
> Student Assistant
>
> UAB| University of Alabama at Birmingham
>
> Contact: (205)396-5816 | whampt@uab.edu
>
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
>
>

[-- Attachment #2: Type: text/html, Size: 4783 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-11-18 19:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-17 16:24 ListServ & yocto on ppc Willis Hampton
2016-11-18 19:02 ` Fabio Berton

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.