file system in qorIQ processors

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

file system in qorIQ processors

跳至解决方案
2,150 次查看
saurabhagarwal
Contributor III

I have Freescale Linux SDK v1.8 for QorIQ Processors that I am using to compile source images for p5040ds development system.

I want to create  root file system image (ramisk)

document says to use following commands.

bitbake <image-target>

what is image-target here ?

标签 (1)
0 项奖励
回复
1 解答
1,628 次查看
yipingwang
NXP TechSupport
NXP TechSupport

Hello saurabh agarwal,

fsl-image-minimal: A Barebones Starting Point for Products.

It contains a small file set that allows Linux to boot and little else. It does not contain Freescale special SDK packages such as USDPAA, etc.

fsl-image-flash: A Small Flash Image for Managing Disks and Larger Images.

This is a small image that Freescale preprograms into the flash on development boards. It does not contain Freescale special SDK packages such as USDPAA, etc. On many boards, the image is stored in a NOR flash and is loaded into a RAM disk when Linux boots.

fsl-image-full: A Full-Featured Image.

This is a large image that contains many standard Linux commands and features including native (target-resident) versions of the GNU tools including gcc and gdb. It contains all of the special Freescale SDK packages such as USDPAA, etc.

fsl-image-core: A Small Image with Freescale-Specific Packages Present

This is a small image somewhat like “fsl-image-minimal” except It contains all of the Freescale-specific SDK packages such as USDPAA, etc.

fsl-image-virt: An image for KVM deployment

This is an image which contains the specific packages needed to enable virtualization.

Users often use "bitbake fsl-image-core" for common usage.


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

在原帖中查看解决方案

5 回复数
1,629 次查看
yipingwang
NXP TechSupport
NXP TechSupport

Hello saurabh agarwal,

fsl-image-minimal: A Barebones Starting Point for Products.

It contains a small file set that allows Linux to boot and little else. It does not contain Freescale special SDK packages such as USDPAA, etc.

fsl-image-flash: A Small Flash Image for Managing Disks and Larger Images.

This is a small image that Freescale preprograms into the flash on development boards. It does not contain Freescale special SDK packages such as USDPAA, etc. On many boards, the image is stored in a NOR flash and is loaded into a RAM disk when Linux boots.

fsl-image-full: A Full-Featured Image.

This is a large image that contains many standard Linux commands and features including native (target-resident) versions of the GNU tools including gcc and gdb. It contains all of the special Freescale SDK packages such as USDPAA, etc.

fsl-image-core: A Small Image with Freescale-Specific Packages Present

This is a small image somewhat like “fsl-image-minimal” except It contains all of the Freescale-specific SDK packages such as USDPAA, etc.

fsl-image-virt: An image for KVM deployment

This is an image which contains the specific packages needed to enable virtualization.

Users often use "bitbake fsl-image-core" for common usage.


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

1,628 次查看
yipingwang
NXP TechSupport
NXP TechSupport

Please find images in the folder build_<platform>_release/tmp/deploy/images/.

Thanks,

Yiping

1,628 次查看
saurabhagarwal
Contributor III

Thanks Yiping,

please also check my updated query.

0 项奖励
回复
1,628 次查看
saurabhagarwal
Contributor III

i have some further queries.

I did run this command. Where can i find created image ?

I was reading FAQ about adding pre built binaries in file system. It says to rebuild file system run this command.

$ bitbake <rootfs-target>

Is rootfs-target same as image-target ?

0 项奖励
回复
1,628 次查看
yipingwang
NXP TechSupport
NXP TechSupport

Yes, "rootfs-target" is what I mentioned previously.

Adding pre-built binaries is done through package "merge-files", this package is included in these type rootfs images by default except fsl-image-minimal.

I you want to use add pre-built binaries in the minimal image, please also add "merge-files" in the variable IMAGE_INSTALL in meta-fsl-networking/images/fsl-image-minimal.bb.

Thanks,

Yiping