/aosp_15_r20/external/coreboot/util/kconfig/patches/ |
H A D | 0015-fix-incorrect-spdx-strings.patch | 16 Index: kconfig/Makefile 18 --- kconfig.orig/Makefile 19 +++ kconfig/Makefile 26 Index: kconfig/conf.c 28 --- kconfig.orig/conf.c 29 +++ kconfig/conf.c 36 Index: kconfig/confdata.c 38 --- kconfig.orig/confdata.c 39 +++ kconfig/confdata.c 46 Index: kconfig/expr.c [all …]
|
H A D | 0008-kconfig-Add-wildcard-support-for-source.patch | 4 Subject: [PATCH] kconfig: Add wildcard support for "source" 6 Kconfig's include directive "source" does not support 7 wildcards (e.g. source src/mainboard/*/Kconfig) which 13 to do the same with Kconfig. 20 util/kconfig/lexer.l | 27 +++++++++++++++++++++++++++ 21 util/kconfig/lkc.h | 1 + 22 util/kconfig/parser.y | 2 +- 25 Index: kconfig/lexer.l 27 --- kconfig.orig/lexer.l 28 +++ kconfig/lexer.l [all …]
|
H A D | series | 1 0002-Kconfig-Change-symbol-override-from-warning-to-notic.patch 2 0003-util-kconfig-conf.c-Fix-newline-in-error-printf.patch 4 0006-util-kconfig-Set-parameter-of-mkdir-to-only-one-for-.patch 5 0008-kconfig-Add-wildcard-support-for-source.patch 6 0009-util-kconfig-Allow-emitting-false-booleans-into-kconfig-output.patch 8 0013-util-kconfig-detect-ncurses-on-FreeBSD.patch 9 0014-util-kconfig-Move-Kconfig-deps-back-into-build-confi.patch
|
H A D | 0014-util-kconfig-Move-Kconfig-deps-back-into-build-confi.patch | 4 Subject: [PATCH] util/kconfig: Move Kconfig deps back into build/config 6 revert commit 1b9e740a8 (kconfig: fix failing to generate auto.conf) [1] 8 The above change caused all of the enabled kconfig options to be written 17 util/kconfig/confdata.c | 20 +++++++++++--------- 20 Index: kconfig/confdata.c 22 --- kconfig.orig/confdata.c 23 +++ kconfig/confdata.c 56 + * Upstream Kconfig sets depfile_path based on the directory
|
H A D | 0004-src-util-Use-NULL-instead-of-0-for-pointer.patch | 8 util/kconfig/lxdialog/util.c | 2 +- 9 util/kconfig/qconf.h | 8 ++++---- 12 Index: kconfig/lxdialog/util.c 14 --- kconfig.orig/lxdialog/util.c 15 +++ kconfig/lxdialog/util.c 25 Index: kconfig/qconf.h 27 --- kconfig.orig/qconf.h 28 +++ kconfig/qconf.h
|
/aosp_15_r20/external/coreboot/Documentation/getting_started/ |
H A D | kconfig.md | 1 # Kconfig in coreboot 4 Kconfig is a tool used in coreboot, Linux, and many other projects as the main 7 Kconfig language was developed as a way to configure the Linux kernel, and is 12 The official Kconfig source and documentation is kept at kernel.org: 17 Kconfig source <https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/scripts/kconfi… 18 Kconfig Language Documentation <https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.tx… 21 The advantage to using Kconfig is that it allows users to easily select the 23 Ultimately the Kconfig tool generates a list of values which are used by the 29 ## Kconfig targets in Make 30 The Kconfig program in coreboot is built from source in util/kconfig. There are [all …]
|
/aosp_15_r20/external/coreboot/src/cpu/intel/ |
H A D | Kconfig | 4 source "src/cpu/intel/model_6xx/Kconfig" 5 source "src/cpu/intel/model_65x/Kconfig" 6 source "src/cpu/intel/model_67x/Kconfig" 7 source "src/cpu/intel/model_68x/Kconfig" 8 source "src/cpu/intel/model_6bx/Kconfig" 9 source "src/cpu/intel/model_6ex/Kconfig" 10 source "src/cpu/intel/model_6fx/Kconfig" 11 source "src/cpu/intel/model_1067x/Kconfig" 12 source "src/cpu/intel/model_106cx/Kconfig" 13 source "src/cpu/intel/model_206ax/Kconfig" [all …]
|
/aosp_15_r20/external/pigweed/ |
H A D | Kconfig.zephyr | 20 rsource "pw_assert_zephyr/Kconfig" 21 rsource "pw_base64/Kconfig" 22 rsource "pw_bytes/Kconfig" 23 rsource "pw_checksum/Kconfig" 24 rsource "pw_chrono_zephyr/Kconfig" 25 rsource "pw_containers/Kconfig" 26 rsource "pw_function/Kconfig" 27 rsource "pw_hdlc/Kconfig" 28 rsource "pw_interrupt_zephyr/Kconfig" 29 rsource "pw_log_zephyr/Kconfig" [all …]
|
/aosp_15_r20/external/coreboot/util/lint/ |
H A D | kconfig_lint_README | 1 kconfig_lint is a tool to help identify issues within coreboot's Kconfig 3 generic Kconfig lint tool for other projects. 6 kconfig_lint parses the entire kconfig tree, building up a hash table of all 8 any Kconfig symbols. By combining these two, it is able to find many issues 24 -p|--print Shows the entire Kconfig tree as parsed by kconfig_lint, 26 This can be very helpful for debugging Kconfig issues. 45 Warnings in Kconfig files: 47 - A 'source' keyword loading a Kconfig file that has already been loaded. 48 - A 'source' keyword loading a Kconfig file that doesn't exist. Note that 52 - Kconfig files that are not loaded by a 'source' keyword. [all …]
|
H A D | lint-stable-006-board-name | 4 # DESCR: Check that every vendor and board has a Kconfig.name 10 if [ -r $i/Kconfig ]; then 11 if [ ! -r $i/Kconfig.name ]; then 12 VENDOR="$(grep -A2 MAINBOARD_VENDOR $i/Kconfig | tail -1 | cut -f2 -d\")" 13 echo "Vendor $VENDOR missing $i/Kconfig.name." 20 if [ -r $i/Kconfig ]; then 21 if [ ! -r $i/Kconfig.name ]; then 22 BOARD="$(grep -A2 MAINBOARD_PART_NUMBER $i/Kconfig | tail -1 | cut -f2 -d\")" 23 echo "Mainboard $BOARD missing $i/Kconfig.name"
|
H A D | check_lint_tests | 21 TESTFILE006="${rootdir}/src/mainboard/ibase/mb899/Kconfig.name" 22 # lint-stable-008-kconfig 23 TESTFILE008="${rootdir}/src/lib/Kconfig" 46 # lint-stable-024-kconfig-no-subsystem 65 echo "lint-stable-008-kconfig" 89 echo "lint-stable-024-kconfig-no-subsystem" 118 echo "lint-stable-008-kconfig" 145 ln -s src/Kconfig "${TESTFILE018}" 152 # lint-stable-024-kconfig-no-subsystem
|
/aosp_15_r20/external/coreboot/src/ |
H A D | Kconfig | 50 set in site-local/Kconfig. 135 bool "Generate parsers for bincfg, sconfig and kconfig locally" 513 Select this option in the Mainboard Kconfig. 523 Select this option in the Mainboard Kconfig. 582 source "src/sbom/Kconfig" 589 source "src/mainboard/Kconfig" 638 # load site-local kconfig to allow user specific defaults and overrides 639 source "site-local/Kconfig" 668 source "src/soc/*/*/Kconfig" 669 source "src/soc/*/*/Kconfig.common" [all …]
|
/aosp_15_r20/external/cronet/net/dns/ |
H A D | system_dns_config_change_notifier_unittest.cc | 32 const DnsConfig kConfig(kNameservers); 129 base::Unretained(test_config_service_), kConfig)); in TEST_F() 133 testing::ElementsAre(testing::Optional(kConfig))); in TEST_F() 146 base::Unretained(test_config_service_), kConfig)); in TEST_F() 154 testing::ElementsAre(testing::Optional(kConfig), in TEST_F() 164 LoadConfig(kConfig); in TEST_F() 171 testing::ElementsAre(testing::Optional(kConfig))); in TEST_F() 180 LoadConfig(kConfig); in TEST_F() 199 LoadConfig(kConfig); in TEST_F() 207 LoadConfig(kConfig); in TEST_F() [all …]
|
/aosp_15_r20/external/toybox/kconfig/ |
H A D | Makefile | 7 obj = ./kconfig 64 SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c 71 kconfig/mconf: $(SHIPPED) 72 $(HOSTCC) -o $@ kconfig/mconf.c kconfig/zconf.tab.c \ 73 kconfig/lxdialog/*.c -lcurses -DCURSES_LOC="<ncurses.h>" \ 76 kconfig/conf: $(SHIPPED) 77 $(HOSTCC) -o $@ kconfig/conf.c kconfig/zconf.tab.c -DKBUILD_NO_NLS=1 \ 81 @rm -f $(wildcard kconfig/*zconf*.c) kconfig/conf kconfig/mconf
|
/aosp_15_r20/external/coreboot/util/kconfig/ |
H A D | Makefile | 7 Kconfig := $(KBUILD_KCONFIG) macro 9 Kconfig := Kconfig macro 50 $(Q)$$< $(silent) $(Kconfig) 60 $(Q)$(PERL) $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config 65 $< $(silent) --oldconfig $(Kconfig); \ 69 $< $(silent) --oldconfig $(Kconfig); \ 85 $(Q)$< $(silent) --$@ $(Kconfig) 90 $(Q)$< $(silent) --$@=defconfig $(Kconfig) 95 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) 102 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig) [all …]
|
H A D | README.md | 1 # coreboot kconfig 3 This is coreboot's copy of kconfig which tracks Linux as upstream but comes 10 ## Updating kconfig 23 is identical to the scripts/kconfig/ directory of Linux as of the most recent 25 `git log util/kconfig` output in our tree. 31 cd util/kconfig && (cd ~/linux/ && git diff v5.13..v5.14 scripts/kconfig) | patch -p2` 41 Check that kconfig still works, `git add` and `git commit` the changes and 42 write a meaningful commit message that documents what Linux kconfig version 47 The format of the patches to kconfig is a mix of the headers produced by `git
|
H A D | streamline_config.pl | 134 # Get the build source and top level Kconfig file (passed in) 136 my $kconfig = $ARGV[1]; 155 my ($kconfig) = @_; 163 my $source = "$ksource/$kconfig"; 190 # collect any Kconfig sources 192 my $kconfig = $1; 194 if (!defined($read_kconfigs{$kconfig})) { 195 $read_kconfigs{$kconfig} = 1; 196 read_kconfig($kconfig); 205 $config2kfile{"CONFIG_$config"} = $kconfig; [all …]
|
/aosp_15_r20/external/pigweed/pw_docgen/py/pw_docgen/sphinx/ |
H A D | kconfig.py | 14 """Auto-generate the Kconfig reference in //docs/os/zephyr/kconfig.rst""" 59 """Recursively generate documentation for the Kconfig nodes.""" 118 """Parse the Kconfig and kick off the doc generation process.""" 120 if 'docs/os/zephyr/kconfig' not in docname: 127 file_path = f'{app.srcdir}/Kconfig.zephyr' 128 kconfig = kconfiglib.Kconfig(file_path) 129 # There's no need to process kconfig.top_node (the main menu) or 130 # kconfig.top_node.list (ZEPHYR_PIGWEED_MODULE) because they don't 132 first_data_node = kconfig.top_node.list.next
|
/aosp_15_r20/external/webrtc/modules/audio_processing/agc2/ |
H A D | clipping_predictor_unittest.cc | 397 constexpr ClippingPredictorConfig kConfig{ in TEST() local 405 auto predictor = CreateClippingPredictor(kNumChannels, kConfig); in TEST() 406 AnalyzeNonZeroCrestFactorAudio(/*num_calls=*/kConfig.reference_window_length, in TEST() 413 AnalyzeZeroCrestFactorAudio(kConfig.window_length, kNumChannels, in TEST() 422 constexpr ClippingPredictorConfig kConfig{ in TEST() local 429 auto predictor = CreateClippingPredictor(kNumChannels, kConfig); in TEST() 430 AnalyzeNonZeroCrestFactorAudio(/*num_calls=*/kConfig.reference_window_length, in TEST() 437 AnalyzeZeroCrestFactorAudio(kConfig.window_length, kNumChannels, in TEST() 446 constexpr ClippingPredictorConfig kConfig{ in TEST() local 453 auto predictor = CreateClippingPredictor(kNumChannels, kConfig); in TEST() [all …]
|
/aosp_15_r20/external/pigweed/pw_spi/ |
H A D | spi_test.cc | 26 constexpr pw::spi::Config kConfig = { variable 40 device_(borrowable_initiator_, kConfig, chip_selector_) {} in SpiTestDevice() 99 static_assert(kConfig == kConfig); 100 static_assert(!(kConfig != kConfig)); 103 Config lhs = kConfig; in TEST() 104 Config rhs = kConfig; in TEST() 111 Config lhs = kConfig; in TEST()
|
/aosp_15_r20/kernel/tests/net/test/ |
H A D | kernel_feature_test.py | 28 KCONFIG = None variable in KernelFeatureTest 40 cls.KCONFIG = {} 48 cls.KCONFIG[parts[0]] = parts[1] 56 return self.assertNotIn(feature_name, self.KCONFIG) 59 return self.assertEqual("y", self.KCONFIG[feature_name]) 62 return self.assertEqual("m", self.KCONFIG[feature_name]) 65 return self.assertIn(self.KCONFIG[feature_name], ["m", "y"]) 80 in your kernel source code in net/Kconfig:
|
/aosp_15_r20/external/coreboot/util/scripts/ |
H A D | rm_unused_code | 11 KEEP_FILES=(util/kconfig/) 29 build. Because all Kconfig and Makefiles are accessed during the built, 30 it then creates a new Kconfig file containing all of the old Kconfigs. 209 cd "${BLD_DIR}" && util/lint/kconfig_lint -w -p -o kconfig.tmp 253 # can be removed, while maintaining the entire Kconfig 255 find "${BLD_DIR}/src" -name 'Kconfig*' -delete 256 mv "${BLD_DIR}/kconfig.tmp" "${BLD_DIR}/src/Kconfig" 262 # all Kconfig and Makefiles in the entire tree are accessed
|
/aosp_15_r20/external/coreboot/payloads/libpayload/ |
H A D | Kconfig | 216 source "libcbfs/Kconfig" 232 source "vboot/Kconfig" 468 source "drivers/timer/Kconfig" 469 source "drivers/storage/Kconfig" 470 source "drivers/usb/Kconfig" 509 source "arch/arm/Kconfig" 510 source "arch/arm64/Kconfig" 511 source "arch/x86/Kconfig" 512 source "arch/mock/Kconfig"
|
/aosp_15_r20/external/coreboot/util/release/ |
H A D | genrelnotes | 260 mainboard_list_old=$(grep -h "^[[:space:]]*config\>[[:space:]]*\<BOARD_" src/mainboard/*/*/Kconfig.… 261 cpu_list_old=$(find_areas "src/cpu" "Kconfig" "intel/common") 263 northbridge_list_old=$(find_areas "src/northbridge" "Kconfig" "") 265 southbridge_list_old=$(find_areas "src/southbridge" "Kconfig" "") 283 mainboard_list_new=$(grep -h "^[[:space:]]*config\>[[:space:]]*\<BOARD_" src/mainboard/*/*/Kconfig.… 284 cpu_list_new=$(find_areas "src/cpu" "Kconfig" "intel/common") 286 northbridge_list_new=$(find_areas "src/northbridge" "Kconfig" "") 288 southbridge_list_new=$(find_areas "src/southbridge" "Kconfig" "") 431 "$(for codedir in $(grep -rl "_ARM" --include=Kconfig | \ 436 …"$(for codedir in $(grep -rl "_RISCV" --include=Kconfig | grep -v 'payloads/\|drivers/\|vendorcode… [all …]
|
/aosp_15_r20/external/coreboot/src/security/ |
H A D | Kconfig | 5 source "src/lib/Kconfig.cbfs_verification" 7 source "src/security/vboot/Kconfig" 8 source "src/security/tpm/Kconfig" 9 source "src/security/memory/Kconfig" 10 source "src/security/intel/Kconfig" 11 source "src/security/lockdown/Kconfig"
|