/openbmc/u-boot/tools/ |
H A D | moveconfig.py | 8 Move config options from headers to defconfig files. 11 config options from headers to Kconfig (defconfig). 28 The tool walks through all the defconfig files and move the given CONFIGs. 32 The log is printed for each defconfig as follows: 40 <defconfig_name> is the name of the defconfig. 42 <action*> shows what the tool did for that defconfig. 46 This config option was moved to the defconfig 72 An error occurred during processing this defconfig. Skipped. 87 defconfig. The config options defined in Kconfig appear in the .config 95 "make savedefconfig" and the defconfig is updated with it. [all …]
|
H A D | genboardscfg.py | 98 defconfig = line.split()[6] + '_defconfig' 99 if not os.path.exists(os.path.join(CONFIG_DIR, defconfig)): 139 def scan(self, defconfig): argument 140 """Load a defconfig file to obtain board parameters. 143 defconfig: path to the defconfig file to be processed 161 for line in open(defconfig): 171 print '%s: %s' % (defconfig, warning) 187 defconfig = os.path.basename(defconfig) 188 params['target'], match, rear = defconfig.partition('_defconfig') 189 assert match and not rear, '%s : invalid defconfig' % defconfig [all …]
|
/openbmc/openbmc/poky/meta-skeleton/recipes-kernel/linux/ |
H A D | linux-yocto-custom.bb | 13 # method is to copy your .config to files/defconfig in your layer, 15 # add file://defconfig to your SRC_URI. 23 # Building this example without providing a defconfig or BSP 34 # defconfig: When a defconfig is provided, the linux-yocto configuration 36 # before merging the defconfig into the build. 38 # If the defconfig file was created with make_savedefconfig, 40 # defaults, not set to 'n'. To properly expand a defconfig like
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | barebox.bbclass | 57 BAREBOX_CONFIG[doc] = "The barebox kconfig defconfig file. Not used if a file called defconfig is a… 68 bareboxdefconfig = 'file://defconfig' in d.getVar('SRC_URI') 71 …e("BAREBOX_CONFIG must be set in the %s machine configuration or file://defconfig must be given in… 75 if [ -e ${UNPACKDIR}/defconfig ]; then 76 cp ${UNPACKDIR}/defconfig ${B}/.config 81 … bbfatal "No defconfig given. Either add file 'file://defconfig' to SRC_URI or set BAREBOX_CONFIG"
|
H A D | kernel-yocto.bbclass | 60 elif base and 'defconfig' in base: 141 # defconfig: $(obj)/conf 143 # $< --defconfig $(Kconfig) 146 # $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) 149 # If a defconfig is specified via the KBUILD_DEFCONFIG variable, we copy it 150 # from the source tree, into a common location and normalized "defconfig" name, 155 if [ -f "${UNPACKDIR}/defconfig" ]; then 156 # If the two defconfig's are different, warn that we overwrote the 158 cmp "${UNPACKDIR}/defconfig" "${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG}" 160 … bbdebug 1 "detected SRC_URI or patched defconfig in UNPACKDIR. ${KBUILD_DEFCONFIG} copied over it" [all …]
|
/openbmc/u-boot/scripts/kconfig/tests/ |
H A D | conftest.py | 43 mode: input mode option (--oldaskconfig, --defconfig=<file> etc.) 144 def defconfig(self, defconfig): member in Conf 145 """Run defconfig. 147 defconfig: defconfig file for input 150 defconfig_path = os.path.join(self._test_dir, defconfig) 151 return self._run_conf('--defconfig={}'.format(defconfig_path)) 208 return self._run_conf('--savedefconfig', out_file='defconfig')
|
/openbmc/linux/scripts/kconfig/tests/ |
H A D | conftest.py | 43 mode: input mode option (--oldaskconfig, --defconfig=<file> etc.) 148 def defconfig(self, defconfig): argument 149 """Run defconfig. 151 defconfig: defconfig file for input 154 defconfig_path = os.path.join(self._test_dir, defconfig) 155 return self._run_conf('--defconfig={}'.format(defconfig_path)) 212 return self._run_conf('--savedefconfig', out_file='defconfig')
|
/openbmc/linux/tools/testing/selftests/nolibc/ |
H A D | Makefile | 59 DEFCONFIG_i386 = defconfig 60 DEFCONFIG_x86_64 = defconfig 61 DEFCONFIG_x86 = defconfig 62 DEFCONFIG_arm64 = defconfig 68 DEFCONFIG_riscv = defconfig 69 DEFCONFIG_s390 = defconfig 70 DEFCONFIG_loongarch = defconfig 71 DEFCONFIG = $(DEFCONFIG_$(XARCH)) macro 141 @echo " defconfig create a fresh new default config (uses \$$XARCH)" 203 defconfig: target [all …]
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | new-machine.rst | 68 a ``defconfig`` file. You can do this by using a ``make defconfig`` 69 command or, more commonly, by copying in a suitable ``defconfig`` file 76 of adding a suitable ``defconfig`` file. The file needs to be added into 77 a location similar to ``defconfig`` files used for other machines in a 84 For more information on ``defconfig`` files, see the
|
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/ |
H A D | __init__.py | 5 the defconfig result of a choice could be affected by another choice 13 assert conf.defconfig('defconfig') == 0
|
/openbmc/linux/scripts/kconfig/tests/inter_choice/ |
H A D | __init__.py | 6 the defconfig result of a choice could be affected by another choice 14 assert conf.defconfig('defconfig') == 0
|
/openbmc/linux/scripts/kconfig/ |
H A D | Makefile | 13 KBUILD_DEFCONFIG := defconfig 79 PHONY += savedefconfig defconfig 82 $(Q)$< $(silent) --$@=defconfig $(Kconfig) 84 defconfig: $(obj)/conf target 87 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) 94 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig) 131 @echo ' defconfig - New config with default from ARCH supplied defconfig' 132 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)' 163 # conf: Used for defconfig, oldconfig and related targets
|
H A D | conf.c | 31 defconfig, enumerator 673 {"defconfig", required_argument, &input_mode_opt, defconfig}, 705 printf(" --defconfig <file> New config with default defined in <file>\n"); in conf_usage() 748 case defconfig: in main() 771 case defconfig: in main() 862 case defconfig: in main() 901 fprintf(stderr, "n*** Error while saving defconfig to: %s\n\n", in main()
|
/openbmc/openbmc/poky/documentation/kernel-dev/ |
H A D | common.rst | 555 ``defconfig`` file and by specifying configuration fragments in the 562 directory, and rename the copied file to "defconfig". Then, add the 566 SRC_URI += "file://defconfig" 575 You can also use a regular ``defconfig`` file, as generated by the 586 The build system applies the configurations from the ``defconfig`` 589 the ``defconfig`` file and any configuration fragments you provide. You need 591 applies these on top of and after applying the existing ``defconfig`` file 622 Using an "In-Tree" ``defconfig`` File 626 through a ``defconfig`` file that is pulled from the kernel source tree 628 looks for ``defconfig`` files in the layer used for Metadata, which is [all …]
|
/openbmc/linux/drivers/gpu/drm/ci/ |
H A D | build.yml | 19 DEFCONFIG: "arch/arm/configs/multi_v7_defconfig" 30 DEFCONFIG: "arch/arm64/configs/defconfig" 39 DEFCONFIG: "arch/x86/configs/x86_64_defconfig"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/toybox/ |
H A D | toybox_0.8.12.bb | 41 # allow user to define their own defconfig in bbappend, taken from kernel.bbclass 46 # Copy defconfig to .config if .config does not exist. This allows 48 if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then 49 cp "${WORKDIR}/defconfig" "${B}/.config" 52 oe_runmake oldconfig || oe_runmake defconfig
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | Makefile | 10 # Linux has defconfig files in arch/$(SRCARCH)/configs/, 95 PHONY += oldnoconfig silentoldconfig savedefconfig defconfig 112 $< $(silent) --$@=defconfig $(Kconfig) 114 defconfig: $(obj)/conf target 116 $< $(silent) --defconfig $(Kconfig) 120 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) 128 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig) 172 @echo ' defconfig - New config with default from ARCH supplied defconfig' 173 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)' 196 # conf: Used for defconfig, oldconfig and related targets
|
H A D | conf.c | 33 defconfig, enumerator 455 {"defconfig", optional_argument, NULL, defconfig}, 485 printf(" --defconfig <file> New config with default defined in <file>\n"); in conf_usage() 517 case defconfig: in main() 583 case defconfig: in main() 668 case defconfig: in main() 706 fprintf(stderr, _("n*** Error while saving defconfig to: %s\n\n"), in main()
|
/openbmc/u-boot/doc/ |
H A D | README.kconfig | 39 - defconfig 41 In U-Boot, "make defconfig" is a shorthand of "make sandbox_defconfig" 101 Target -> File name of defconfig (configs/<target>_defconfig) 150 file with differences in the option fields. The corresponding defconfig 152 defconfig files compared with the number of the supported boards. It is 153 recommended to have only one defconfig per board and allow users to select
|
/openbmc/u-boot/board/congatec/conga-qeval20-qa3-e3845/ |
H A D | README | 6 configurations (defconfig files). The only difference is the UART that 7 is used as the U-Boot console UART. The default defconfig file: 14 connector on the mainboard (the low one). The 2nd defconfig file:
|
/openbmc/linux/tools/testing/ktest/examples/ |
H A D | crosstests.conf | 52 # As some archs do not build with the defconfig, they have been marked 83 # If you want to add configs on top of the defconfig, you can add those configs into 88 # All tests are using defconfig 89 BUILD_TYPE = defconfig 193 # will be the config file it uses. Basically, just copy the created defconfig
|
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-kernel/linux/ |
H A D | linux-arm-platforms.inc | 30 file://defconfig \ 90 KBUILD_DEFCONFIG:sgi575 = "defconfig" 97 KBUILD_DEFCONFIG:sbsa-ref = "defconfig"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/hostapd/ |
H A D | hostapd_2.11.bb | 11 file://defconfig \ 29 install -m 0644 ${UNPACKDIR}/defconfig ${B}/hostapd/.config
|
/openbmc/u-boot/board/logicpd/omap3som/ |
H A D | README | 11 The device tree included with each of the defconfig files will also direct the board as to which dt… 12 recomended to mix and match the defconfig files.
|
/openbmc/u-boot/scripts/ |
H A D | build-whitelist.sh | 24 # Kconfig and defconfig files. 33 egrep -vi "(Kconfig:|defconfig:|README|\.py|\.pl:)" \
|