zoukankan      html  css  js  c++  java
  • buildroot-2015.05-rc1 择记

    • images/ where all the images (kernel image, bootloader and root filesystem images) are stored. These are the files you need
    to put on your target system.
    • build/ where all the components are built (this includes tools needed by Buildroot on the host and packages compiled for
    the target). This directory contains one subdirectory for each of these components.
    • staging/ which contains a hie  rarchy similar to a root filesystem hierarchy. This directory contains the headers and libraries
    of the cross-compilation toolchain and all the userspace packages selected for the target. However, this directory is not intended
    to be the root filesystem for the target: it contains a lot of development files, unstripped binaries and libraries that make it far
    too big for an embedded system. These development files are used to compile libraries and applications for the target that
    depend on other libraries.
    • target/ which contains almost the complete root filesystem for the target: everything needed is present except the device
    files in /dev/ (Buildroot can’t create them because Buildroot doesn’t run as root and doesn’t want to run as root). Also, it
    doesn’t have the correct permissions (e.g. setuid for the busybox binary). Therefore, this directory should not be used on
    your target. Instead, you should use one of the images built in the images/ directory. If you need an extracted image of
    the root filesystem for booting over NFS, then use the tarball image generated in images/ and extract it as root. Compared
    to staging/, target/ contains only the files and libraries needed to run the selected target applications: the development
    files (headers, etc.) are not present, the binaries are stripped.
    • host/ contains the installation of tools compiled for the host that are needed for the proper execution of Buildroot, including
    the cross-compilation toolchain.

  • 相关阅读:
    012_DRC检查与处理
    深度系统20.3中亿图图示任务栏名称显示乱码
    deepin20.3+nvidia460.27+cuda11.2+cudnn8.1.1+anconda3.2021.11+paddle2.1.2
    C++中使用DOM写XML文档
    理解lvalue和rvalue
    C++/CLI与C#常用语法对比
    VC++ MSXML创建XML文件以及对XML文档解析
    Stack overflow 编译能通过,运行时出现Stack overflow
    于typedef的用法总结
    VC2008操作Excel2007总结
  • 原文地址:https://www.cnblogs.com/tkid/p/4487178.html
Copyright © 2011-2022 走看看