mirror of https://github.com/openwrt/openwrt.git
![]() Strip trailing whitespace in all code: find . -type f | grep "\.c$" | xargs sed -i 's/[ \t]\+$//' find . -type f | grep "\.h$" | xargs sed -i 's/[ \t]\+$//' find . -type f | grep "\.dts$" | xargs sed -i 's/[ \t]\+$//' find . -type f | grep "\.dtsi$" | xargs sed -i 's/[ \t]\+$//' Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com> Link: https://github.com/openwrt/openwrt/pull/18626 Signed-off-by: Robert Marko <robimarko@gmail.com> |
||
---|---|---|
.. | ||
lxdialog | ||
.gitignore | ||
Kbuild.include | ||
Makefile | ||
README | ||
conf.c | ||
confdata.c | ||
expr.c | ||
expr.h | ||
images.c | ||
images.h | ||
internal.h | ||
lexer.l | ||
lexer.lex.c | ||
list.h | ||
lkc.h | ||
lkc_proto.h | ||
mconf-cfg.sh | ||
mconf.c | ||
menu.c | ||
nconf-cfg.sh | ||
nconf.c | ||
nconf.gui.c | ||
nconf.h | ||
parser.tab.c | ||
parser.tab.h | ||
parser.y | ||
preprocess.c | ||
qconf-cfg.sh | ||
qconf.cc | ||
qconf.h | ||
symbol.c | ||
util.c |
README
These files were taken from the Linux Kernel Configuration System v6.6.16, at commit eb3e299184cc4f40d4bd84fda269b3a20ddcff80 (Feb 5, 2024), and modified for the OpenWrt Buildroot: - Removed gconf, tests and kernel configuration targets. - Adjusted the Makefile to compile outside the kernel. - Always use default file when running make all{no,mod,yes}config. - Added a 'reset' command to reset config when the target changes. - Allow config reading from & writing to a different file. - Allow 'source' command to use globs to include multiple files. - Don't warn when selecting a symbol with unmet direct dependencies. - Don't write auto.conf and other files under include/ directory. - Reverted a commit to allow use of '/' & '.' in unquoted config symbols. There are too many of those in OpenWrt right now. - Reverted a commit that was issuing a warning when there were more than one help text. This is used in a few packages to use different texts for the menuconfig help, and the ipkg package description. - Reverted an upstream change that avoids writing symbols that are not visible to .config, which breaks OpenWrt busybox's '.config' generation logic. - Treat recursive dependency as a warning only; add a --fatalrecursive option to conf to treat recursive deps as a fatal error. - Use pre-built *.lex.c *.tab.[ch] files by default, to avoid depending on flex & bison. Rebuild/remove these files only if running make with BUILD_SHIPPED_FILES defined For a full list of changes, see the repository at: https://github.com/cotequeiroz/linux/commits/openwrt-v6.6.16/scripts/kconfig