i.MX6 Yocto工程BitBake編譯完成后文件目錄結(jié)構(gòu)說明

編譯完成后源碼目錄粗略分析

├── build-x11 //編譯目錄

│ ├── cache //編譯緩存

│ ├── conf //配置

│ ├── sstate-cache //保存狀態(tài),如果沒有改變下次不再重新編譯包

│ │ └── Ubuntu-14.04

│ └── tmp //鏡像故爵,代碼

│ ├── buildstats //編譯時狀態(tài)記錄镣隶,如果中斷可以續(xù)編

│ │ ├── 20171116021902

│ │ └── 20171116063407

│ ├── cache //編譯過程中的緩存

│ │ └── default-glibc

│ ├── deploy //生成的鏡像婿斥、文件系統(tǒng)及安裝插件

│ │ ├── images

│ │ ├── licenses

│ │ └── rpm

│ ├── log //編譯生成的日志文件

│ │ └── cooker

│ ├── sstate-control //編譯完成的包會在這里建立文件以標識

│ ├── stamps

│ │ ├── all-poky-linux

│ │ ├── cortexa9hf-neon-mx6qdl-poky-linux-gnueabi

│ │ ├── cortexa9hf-neon-poky-linux-gnueabi

│ │ ├── imx6qsabresd-poky-linux-gnueabi

│ │ ├── work-shared

│ │ └── x86_64-linux

│ ├── sysroots //緩存的工具連,但是用不了

│ │ ├── imx6qsabresd

│ │ ├── imx6qsabresd-tcbootstrap

│ │ └── x86_64-linux

│ ├── work //代碼都在這里

│ │ ├── all-poky-linux

│ │ ├── cortexa9hf-neon-mx6qdl-poky-linux-gnueabi

│ │ ├── cortexa9hf-neon-poky-linux-gnueabi

│ │ ├── imx6qsabresd-poky-linux-gnueabi

│ │ └── x86_64-linux

│ └── work-shared

│ ├── gcc-5.3.0-r0

│ └── imx6qsabresd

└── sources //repo下載的yocto

├── base //baseconfiguration for FSL Community BSP

│ └── conf

├── meta-browser //瀏覽器支持

│ ├── classes

│ ├── conf

│ ├── recipes-browser

│ │ └── chromium

│ ├── recipes-gnome

│ │ └── gnome-settings-daemon

│ ├── recipes-mozilla

│ │ ├── firefox

│ │ ├── firefox-addon

│ │ ├── firefox-l10n

│ │ └── mozilla-devscripts

│ └── scripts

├── meta-fsl-arm //Freescale ARM基礎(chǔ)和Freescale ARM參考板支持

│ ├── browser-layer

│ │ └── recipes-browser

│ ├── classes

│ ├── conf

│ │ └── machine

│ ├── efl-layer

│ │ └── recipes-efl

│ ├── filesystem-layer

│ │ └── recipes-fsl

│ ├── openembedded-layer

│ │ ├── recipes-benchmark

│ │ ├── recipes-kernel

│ │ └── recipes-support

│ ├── qt4-layer

│ │ └── recipes-qt4

│ ├── qt5-layer

│ │ └── recipes-qt

│ ├── recipes-bsp

│ │ ├── alsa-state

│ │ ├── apptrk

│ │ ├── barebox

│ │ ├── change-file-endianess

│ │ ├── elftosb

│ │ ├── firmware-imx

│ │ ├── formfactor

│ │ ├── imx-bootlets

│ │ ├── imx-kobs

│ │ ├── imx-lib

│ │ ├── imx-test

│ │ ├── imx-uuc

│ │ ├── imx-vpu

│ │ ├── mxsldr

│ │ ├── qe-ucode

│ │ ├── rcw

│ │ └── u-boot

│ ├── recipes-core

│ │ ├── packagegroup

│ │ └── udev

│ ├── recipes-devtools

│ │ ├── cst

│ │ ├── devregs

│ │ ├── imx-usb-loader

│ │ └── qemu

│ ├── recipes-fsl

│ │ ├── images

│ │ └── packagegroups

│ ├── recipes-graphics

│ │ ├── cairo

│ │ ├── clutter

│ │ ├── cogl

│ │ ├── drm

│ │ ├── eglinfo

│ │ ├── gtk+

│ │ ├── images

│ │ ├── imx-gpu-viv

│ │ ├── mesa

│ │ ├── piglit

│ │ ├── wayland

│ │ ├── xinput-calibrator

│ │ ├── xorg-driver

│ │ └── xorg-xserver

│ ├── recipes-kernel

│ │ ├── kernel-modules

│ │ └── linux

│ ├── recipes-multimedia

│ │ ├── alsa

│ │ ├── gstreamer

│ │ ├── imx-codec

│ │ ├── imx-parser

│ │ ├── imx-vpuwrap

│ │ ├── libimxvpuapi

│ │ └── pulseaudio

│ ├── SCR

│ │ └── imx

│ └── scripts

│ └── lib

├── meta-fsl-arm-extra //第三方和合作伙伴板級支持

│ ├── conf

│ │ └── machine

│ ├── recipes-bsp

│ │ ├── barebox

│ │ ├── broadcom-nvram-config

│ │ ├── formfactor

│ │ ├── imx-bootlets

│ │ ├── libmcc

│ │ ├── libmcc2

│ │ ├── mqxboot

│ │ └── u-boot

│ ├── recipes-core

│ │ ├── init-ifupdown

│ │ └── net-persistent-mac

│ └── recipes-kernel

│ ├── kernel-module-mcc-toradex

│ ├── kernel-modules

│ ├── linux

│ └── linux-firmware

├── meta-fsl-bsp-release // Freescale BSPrelease layer

│ └── imx

│ ├── classes

│ ├── meta-bsp

│ ├── meta-sdk

│ └── tools

├── meta-fsl-demos //額外的協(xié)助開發(fā)和測試板載能力

│ ├── conf

│ ├── recipes-fsl

│ │ ├── fsl-rc-local

│ │ ├── images

│ │ └── packagegroups

│ └── recipes-graphics

│ ├── devil

│ └── fsl-gpu-sdk

├── meta-openembedded //OE核心層

│ ├── contrib

│ ├── meta-efl

│ │ ├── classes

│ │ ├── conf

│ │ ├── recipes-core

│ │ ├── recipes-devtools

│ │ ├── recipes-efl

│ │ ├── recipes-multimedia

│ │ └── recipes-navigation

│ ├── meta-filesystems

│ │ ├── conf

│ │ ├── recipes-filesystems

│ │ ├── recipes-support

│ │ └── recipes-utils

│ ├── meta-gnome

│ │ ├── conf

│ │ ├── recipes-apps

│ │ ├── recipes-connectivity

│ │ ├── recipes-devtools

│ │ ├── recipes-extended

│ │ ├── recipes-gnome

│ │ ├── recipes-support

│ │ └── site

│ ├── meta-gpe

│ │ ├── conf

│ │ ├── recipes-graphics

│ │ └── recipes-support

│ ├── meta-initramfs

│ │ ├── classes

│ │ ├── conf

│ │ ├── recipes-bsp

│ │ ├── recipes-devtools

│ │ └── recipes-kernel

│ ├── meta-multimedia

│ │ ├── conf

│ │ ├── recipes-connectivity

│ │ ├── recipes-dvb

│ │ ├── recipes-mediacentre

│ │ ├── recipes-mkv

│ │ ├── recipes-multimedia

│ │ └── recipes-support

│ ├── meta-networking

│ │ ├── classes

│   │   ├── conf

│ │ ├── files

│ │ ├── licenses

│ │ ├── recipes-connectivity

│ │ ├── recipes-daemons

│ │ ├── recipes-extended

│ │ ├── recipes-filter

│ │ ├── recipes-irc

│ │ ├── recipes-kernel

│ │ ├── recipes-netkit

│ │ ├── recipes-protocols

│ │ └── recipes-support

│ ├── meta-oe

│ │ ├── classes

│ │ ├── conf

│ │ ├── licenses

│ │ ├── recipes-benchmark

│ │ ├── recipes-connectivity

│ │ ├── recipes-core

│ │ ├── recipes-devtools

│ │ ├── recipes-extended

│ │ ├── recipes-gnome

│ │ ├── recipes-graphics

│ │ ├── recipes-kernel

│ │ ├── recipes-multimedia

│ │ ├── recipes-navigation

│ │ ├── recipes-sato

│ │ ├── recipes-support

│ │ ├── recipes-test

│ │ └── site

│ ├── meta-perl

│ │ ├── conf

│ │ ├── recipes-extended

│ │ └── recipes-perl

│ ├── meta-python

│ │ ├── classes

│ │ ├── conf

│ │ ├── licenses

│ │ ├── recipes-connectivity

│ │ ├── recipes-devtools

│ │ └── recipes-extended

│ ├── meta-ruby

│ │ ├── classes

│ │ ├── conf

│ │ └── recipes-devtools

│ ├── meta-systemd

│ │ ├── conf

│ │ ├── oe-core

│ │ └── recipes-core

│ ├── meta-webserver

│ │ ├── conf

│ │ ├── licenses

│ │ ├── recipes-httpd

│ │ ├── recipes-php

│ │ ├── recipes-support

│ │ └── recipes-webadmin

│ └── meta-xfce

│ ├── classes

│ ├── conf

│ ├── recipes-apps

│ ├── recipes-art

│ ├── recipes-bindings

│ ├── recipes-core

│ ├── recipes-extended

│ ├── recipes-multimedia

│ ├── recipes-panel-plugins

│ ├── recipes-support

│ ├── recipes-thunar-plugins

│ └── recipes-xfce

├── meta-qt5 //QT5支持

│ ├── classes

│ ├── conf

│ ├── files

│ ├── lib

│ │ └── recipetool

│ ├── licenses

│ ├── recipes-devtools

│ │ └── gdb

│ └── recipes-qt

│ ├── demo-extrafiles

│ ├── examples

│ ├── libconnman-qt

│ ├── maliit

│ ├── meta

│ ├── packagegroups

│ ├── qsiv

│ ├── qt5

│ ├── quazip

│ └── tufao

└── poky //基本Yocto Project的Poky版本

   ├── bitbake

   │   ├── bin

   │   ├── contrib

   │   ├── doc

   │   └── lib

   ├── documentation

   │   ├── adt-manual

   │   ├── bsp-guide

   │   ├── dev-manual

   │   ├── kernel-dev

   │   ├── mega-manual

   │   ├── profile-manual

   │   ├── ref-manual

   │   ├── sdk-manual

   │   ├── template

   │   ├── toaster-manual

   │   ├── tools

   │   └── yocto-project-qs

   ├── meta

   │   ├── classes

   │   ├── conf

   │   ├── files

   │   ├── lib

   │   ├── recipes-bsp

   │   ├── recipes-connectivity

   │   ├── recipes-core

   │   ├── recipes-devtools

   │   ├── recipes-extended

   │   ├── recipes-gnome

   │   ├── recipes-graphics

   │   ├── recipes-kernel

   │   ├── recipes-lsb4

   │   ├── recipes-multimedia

   │   ├── recipes-rt

   │   ├── recipes-sato

   │   ├── recipes-support

   │   └── site

   ├── meta-poky

   │   ├── classes

   │   ├── conf

   │   └── recipes-core

   ├── meta-selftest

   │   ├── classes

   │   ├── conf

   │   ├── files

   │   ├── lib

   │   └── recipes-test

   ├── meta-skeleton

   │   ├── conf

   │   ├── recipes-core

   │   ├── recipes-kernel

   │   ├── recipes-multilib

   │   └── recipes-skeleton

   ├── meta-yocto

   │   └── conf

   ├── meta-yocto-bsp

   │   ├── conf

   │   ├── lib

   │   ├── recipes-bsp

   │   ├── recipes-core

   │   ├── recipes-graphics

   │   └── recipes-kernel

   └── scripts

        ├── contrib

        ├── lib

        ├── native-intercept

        ├── postinst-intercepts

        ├── pybootchartgui

        └── tiny

————————————————
版權(quán)聲明:本文為CSDN博主「Gordon-Li」的原創(chuàng)文章双妨,遵循 CC 4.0 BY-SA 版權(quán)協(xié)議寓盗,轉(zhuǎn)載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/ligordon/article/details/78569994

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末望侈,一起剝皮案震驚了整個濱河市印蔬,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌脱衙,老刑警劉巖侥猬,帶你破解...
    沈念sama閱讀 222,464評論 6 517
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異捐韩,居然都是意外死亡退唠,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 95,033評論 3 399
  • 文/潘曉璐 我一進店門奥帘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來铜邮,“玉大人,你說我怎么就攤上這事寨蹋。” “怎么了扔茅?”我有些...
    開封第一講書人閱讀 169,078評論 0 362
  • 文/不壞的土叔 我叫張陵已旧,是天一觀的道長。 經(jīng)常有香客問我召娜,道長运褪,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 59,979評論 1 299
  • 正文 為了忘掉前任,我火速辦了婚禮秸讹,結(jié)果婚禮上檀咙,老公的妹妹穿的比我還像新娘。我一直安慰自己璃诀,他們只是感情好弧可,可當我...
    茶點故事閱讀 69,001評論 6 398
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著劣欢,像睡著了一般棕诵。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上凿将,一...
    開封第一講書人閱讀 52,584評論 1 312
  • 那天校套,我揣著相機與錄音,去河邊找鬼牧抵。 笑死笛匙,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的犀变。 我是一名探鬼主播膳算,決...
    沈念sama閱讀 41,085評論 3 422
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼弛作!你這毒婦竟也來了涕蜂?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 40,023評論 0 277
  • 序言:老撾萬榮一對情侶失蹤映琳,失蹤者是張志新(化名)和其女友劉穎机隙,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體萨西,經(jīng)...
    沈念sama閱讀 46,555評論 1 319
  • 正文 獨居荒郊野嶺守林人離奇死亡有鹿,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,626評論 3 342
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了谎脯。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片葱跋。...
    茶點故事閱讀 40,769評論 1 353
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖源梭,靈堂內(nèi)的尸體忽然破棺而出娱俺,到底是詐尸還是另有隱情,我是刑警寧澤废麻,帶...
    沈念sama閱讀 36,439評論 5 351
  • 正文 年R本政府宣布荠卷,位于F島的核電站,受9級特大地震影響烛愧,放射性物質(zhì)發(fā)生泄漏油宜。R本人自食惡果不足惜掂碱,卻給世界環(huán)境...
    茶點故事閱讀 42,115評論 3 335
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望慎冤。 院中可真熱鬧疼燥,春花似錦、人聲如沸蚁堤。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,601評論 0 25
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽违寿。三九已至湃交,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間藤巢,已是汗流浹背搞莺。 一陣腳步聲響...
    開封第一講書人閱讀 33,702評論 1 274
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留掂咒,地道東北人才沧。 一個月前我還...
    沈念sama閱讀 49,191評論 3 378
  • 正文 我出身青樓,卻偏偏與公主長得像绍刮,于是被迫代替她去往敵國和親温圆。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 45,781評論 2 361

推薦閱讀更多精彩內(nèi)容