Home
last modified time | relevance | path

Searched refs:defconfig (Results 1 – 25 of 145) sorted by relevance

123456

/OK3568_Linux_fs/u-boot/tools/
H A Dgenboardscfg.py99 defconfig = line.split()[6] + '_defconfig'
100 if not os.path.exists(os.path.join(CONFIG_DIR, defconfig)):
140 def scan(self, defconfig): argument
162 for line in open(defconfig):
172 print '%s: %s' % (defconfig, warning)
188 defconfig = os.path.basename(defconfig)
189 params['target'], match, rear = defconfig.partition('_defconfig')
190 assert match and not rear, '%s : invalid defconfig' % defconfig
218 for defconfig in defconfigs:
219 queue.put(kconf_scanner.scan(defconfig))
H A Dmoveconfig.py440 return [ defconfig[len('configs') + 1:] for defconfig in set(defconfigs) ]
696 for defconfig in defconfigs:
697 cleanup_one_extra_option(os.path.join('configs', defconfig), configs,
818 self.defconfig = os.path.join(build_dir, 'defconfig')
986 with open(self.defconfig) as f:
1022 defconfig, configs = self.db_queue.get()
1023 self.config_db[defconfig] = configs
1079 def add(self, defconfig): argument
1095 self.defconfig = defconfig
1159 cmd.append(self.defconfig)
[all …]
/OK3568_Linux_fs/yocto/poky/meta-skeleton/recipes-kernel/linux/
H A Dlinux-yocto-custom.bb13 # 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
/OK3568_Linux_fs/buildroot/docs/manual/
H A Dcustomize-configuration.txt12 called +defconfig+. If you want to save it in another place, change the
14 make with +make savedefconfig BR2_DEFCONFIG=<path-to-defconfig>+.
16 The recommended place to store this defconfig is
22 +make defconfig BR2_DEFCONFIG=<path-to-defconfig-file>+.
48 * +make linux-update-defconfig+ saves the linux configuration to the
57 * +make barebox-update-defconfig+ saves the barebox configuration to the
59 * +make uboot-update-defconfig+ saves the U-Boot configuration to the
H A Dcustomize-quick-guide.txt25 * +make linux-update-defconfig+
30 * +make barebox-update-defconfig+
31 * +make uboot-update-defconfig+
66 1. +cp defconfig configs/<boardname>_defconfig+
/OK3568_Linux_fs/buildroot/package/linux-backports/
H A DConfig.in23 bool "Using an in-tree defconfig file"
34 Name of the backports defconfig file to use, without the
35 leading defconfig-. The defconfig is located in defconfigs/
44 Note: this can be a defconfig file or a complete .config
/OK3568_Linux_fs/buildroot/support/scripts/
H A Dgenerate-gitlab-ci-yml52 (defconfig)
91 >defconfig.frag
92 if [ ! -s defconfig.frag ]; then
99 --config-snippet defconfig.frag \
H A Dcheck-dotconfig.py16 defconfig = sys.argv[2]
23 with open(defconfig) as defconfigf:
35 print("WARN: defconfig {} can't be used:".format(defconfig))
/OK3568_Linux_fs/buildroot/package/xvisor/
H A DConfig.in26 bool "Using an in-tree defconfig file"
42 Name of the Xvisor defconfig file to use, without the
43 trailing -defconfig. The defconfig is located in
/OK3568_Linux_fs/buildroot/
H A DREADME.rockchip6 1. Choose Rockchip defconfig:
11 ~ $ make update-defconfig # Or savedefconfig to update/save defconfig
/OK3568_Linux_fs/buildroot/package/
H A Dpkg-kconfig.mk105 $(1)-update-defconfig $(1)
302 .PHONY: $(1)-update-defconfig
303 $(1)-update-defconfig: PKG=$(2)
304 $(1)-update-defconfig: $(1)-savedefconfig
305 $$(call kconfig-package-update-config,defconfig)
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dkernel-yocto.bbclass54 elif base and 'defconfig' in base:
132 # defconfig: $(obj)/conf
134 # $< --defconfig $(Kconfig)
137 # $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
140 # If a defconfig is specified via the KBUILD_DEFCONFIG variable, we copy it
141 # from the source tree, into a common location and normalized "defconfig" name,
144 # If the fetcher has already placed a defconfig in WORKDIR (from the SRC_URI),
150 if [ -f "${WORKDIR}/defconfig" ]; then
151 # If the two defconfig's are different, warn that we overwrote the
153 cmp "${WORKDIR}/defconfig" "${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG}"
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/toybox/
H A Dtoybox_0.8.6.bb42 # allow user to define their own defconfig in bbappend, taken from kernel.bbclass
47 # Copy defconfig to .config if .config does not exist. This allows
49 if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then
50 cp "${WORKDIR}/defconfig" "${B}/.config"
53 oe_runmake oldconfig || oe_runmake defconfig
/OK3568_Linux_fs/u-boot/board/congatec/conga-qeval20-qa3-e3845/
H A DREADME6 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:
/OK3568_Linux_fs/device/rockchip/common/configs/
H A DConfig.in10 string "Location to save defconfig"
12 default "defconfig"
14 When running 'make savedefconfig', the defconfig file will be
/OK3568_Linux_fs/u-boot/scripts/kconfig/
H A DMakefile97 PHONY += oldnoconfig savedefconfig defconfig
105 $< $(silent) --$@=defconfig $(Kconfig)
107 defconfig: $(obj)/conf target
109 $< $(silent) --defconfig $(Kconfig)
113 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
121 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
/OK3568_Linux_fs/kernel/scripts/kconfig/
H A DMakefile73 PHONY += savedefconfig defconfig
76 $(Q)$< $(silent) --$@=defconfig $(Kconfig)
78 defconfig: $(obj)/conf target
81 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
88 $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
H A Dconf.c32 defconfig, enumerator
462 {"defconfig", required_argument, NULL, defconfig},
524 case defconfig: in main()
581 case defconfig: in main()
668 case defconfig: in main()
/OK3568_Linux_fs/buildroot/support/kconfig/
H A DMakefile95 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)
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-kernel/linux/
H A Dlinux-rockchip.inc47 # Force regenerating defconfig
48 rm -f ${WORKDIR}/defconfig
50 # Support defconfig fragments
/OK3568_Linux_fs/
H A DMakefile143 $(Q)$(COMMON_CONFIG_ENV) $< --defconfig=$(CHIP_DIR)/$@ $(CONFIG_CONFIG_IN)
149 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CHIP_DIR)/defconfig) \
151 $(Q)sed '/^RK_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CHIP_DIR)/defconfig)
/OK3568_Linux_fs/device/rockchip/common/
H A DMakefile143 $(Q)$(COMMON_CONFIG_ENV) $< --defconfig=$(CHIP_DIR)/$@ $(CONFIG_CONFIG_IN)
149 --savedefconfig=$(if $(DEFCONFIG),$(DEFCONFIG),$(CHIP_DIR)/defconfig) \
151 $(Q)sed '/^RK_DEFCONFIG=/d' $(if $(DEFCONFIG),$(DEFCONFIG),$(CHIP_DIR)/defconfig)
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.kconfig39 - 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
/OK3568_Linux_fs/kernel/scripts/kconfig/tests/
H A Dconftest.py144 def defconfig(self, defconfig): member in Conf
150 defconfig_path = os.path.join(self._test_dir, defconfig)
/OK3568_Linux_fs/buildroot/boot/at91bootstrap3/
H A DConfig.in81 bool "Using a defconfig"
92 Name of the at91bootstrap3 defconfig file to use, without the
93 trailing _defconfig. The defconfig is located at

123456