what is the utility of the buildroot on beagleboneBlack?

十年热恋 提交于 2019-12-02 09:19:39

Build a completely custom, lightweight, and fast-booting embedded Linux system?

Buildroot is a set of Makefiles and patches that makes it easy to generate a complete embedded Linux system.

Buildroot can generate any or all of a cross-compilation toolchain, a root filesystem, a kernel image and a bootloader image.

It is useful mainly for people working with small or embedded systems, using various CPU architectures (x86, ARM, MIPS, PowerPC, etc.) : it automates the building process of your embedded system and eases the cross-compilation process.

The resulting root filesystem is mounted read-only, but other filesystems can be mounted read/write for persistence.

Although user accounts can be created, in practice almost everything is done as root. Buildroot uses no package manager.

Instead, package selection is managed through make menuconfig.

source http://elinux.org/BeagleBone_Operating_Systems

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!