324612d68e
Compiling on Ubuntu 20.04 generates this: ./util.c: In function ‘file_write_dep’ ./util.c:54:18: warning: ‘..config.tmp’ directive writing 12 bytes into a region of size between 1 and 4097 [-Wformat-overflow=] 54 | sprintf(buf, "%s..config.tmp", dir); | ^~~~~~~~~~~~ ./util.c:54:2: note: ‘sprintf’ output between 13 and 4109 bytes into a destination of size 4097 54 | sprintf(buf, "%s..config.tmp", dir); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ and similar warnings on confdata.c, lines 778, 989, 995, 1000, 1007, 1040, 1046 and 1054. Avoid the warnings by enlarging the destination buffer of fprintf(). Normally, we want changes to kconfig to be reflected by patches in support/kconfig/patches. This makes it easier to resync with upstream kconfig. However, in this case, everything that is changed here is already changed completely (and differently) upstream, so there is no added value in keeping the patch. Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> |
||
---|---|---|
arch | ||
board | ||
boot | ||
configs | ||
docs | ||
fs | ||
linux | ||
package | ||
support | ||
system | ||
toolchain | ||
utils | ||
.defconfig | ||
.flake8 | ||
.gitignore | ||
.gitlab-ci.yml | ||
CHANGES | ||
Config.in | ||
Config.in.legacy | ||
COPYING | ||
DEVELOPERS | ||
Makefile | ||
Makefile.legacy | ||
README |
Buildroot is a simple, efficient and easy-to-use tool to generate embedded Linux systems through cross-compilation. The documentation can be found in docs/manual. You can generate a text document with 'make manual-text' and read output/docs/manual/manual.text. Online documentation can be found at http://buildroot.org/docs.html To build and use the buildroot stuff, do the following: 1) run 'make menuconfig' 2) select the target architecture and the packages you wish to compile 3) run 'make' 4) wait while it compiles 5) find the kernel, bootloader, root filesystem, etc. in output/images You do not need to be root to build or run buildroot. Have fun! Buildroot comes with a basic configuration for a number of boards. Run 'make list-defconfigs' to view the list of provided configurations. Please feed suggestions, bug reports, insults, and bribes back to the buildroot mailing list: buildroot@buildroot.org You can also find us on #buildroot on OFTC IRC. If you would like to contribute patches, please read https://buildroot.org/manual.html#submitting-patches