/u-boot/scripts/ |
A D | config | 19 --enable|-e option Enable option 20 --disable|-d option Disable option 21 --module|-m option Turn option into a module 22 --set-str option string 24 --set-val option value 26 --undefine|-u option Undefine option 27 --state|-s option Print state of option (n,y,m,undef) 29 --enable-after|-E beforeopt option 30 Enable option directly after other option 32 Disable option directly after other option [all …]
|
A D | Makefile.extrawarn | 26 warning-1 += $(call cc-option, -Wmissing-prototypes) 28 warning-1 += $(call cc-option, -Wmissing-include-dirs) 29 warning-1 += $(call cc-option, -Wunused-but-set-variable) 30 warning-1 += $(call cc-option, -Wunused-const-variable) 31 warning-1 += $(call cc-option, -Wpacked-not-aligned) 32 warning-1 += $(call cc-option, -Wstringop-truncation) 41 warning-2 += $(call cc-option, -Wlogical-op) 43 warning-2 += $(call cc-option, -Wsign-compare) 44 warning-2 += $(call cc-option, -Wmaybe-uninitialized) 45 warning-2 += $(call cc-option, -Wunused-macros) [all …]
|
A D | Kbuild.include | 87 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise) 101 # as-option 104 as-option = $(call try-run,\ 113 # __cc-option 118 # cc-option 120 cc-option = $(call __cc-option, $(CC),\ 123 # hostcc-option 125 hostcc-option = $(call __cc-option, $(HOSTCC),\ 128 # cc-option-yn 158 # ld-option [all …]
|
A D | Kconfig.include | 21 # $(cc-option,<flag>) 23 cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null) 29 # $(ld-option,<flag>) 31 ld-option = $(success,$(LD) -v $(1))
|
/u-boot/include/linux/ |
A D | kconfig.h | 29 #define IS_ENABLED(option) config_enabled(option, 0) argument 61 #define CONFIG_VAL(option) config_val(option) argument 84 #define IF_ENABLED_INT(option, int_option) \ argument 85 config_opt_enabled(option, int_option, invalid_use_of_IF_ENABLED_INT()) 101 #define __CONFIG_IS_ENABLED_1(option) __CONFIG_IS_ENABLED_3(option, (1), (0)) argument 102 #define __CONFIG_IS_ENABLED_2(option, case1) __CONFIG_IS_ENABLED_3(option, case1, ()) argument 103 #define __CONFIG_IS_ENABLED_3(option, case1, case0) \ argument 138 #define CONFIG_IS_ENABLED(option, ...) \ argument 139 __concat(__CONFIG_IS_ENABLED_, __count_args(option, ##__VA_ARGS__)) (option, ##__VA_ARGS__) 154 #define CONFIG_IF_ENABLED_INT(option, int_option) \ argument [all …]
|
A D | compiler_types.h | 239 #define __diag_ignore(compiler, version, option, comment) \ argument 240 __diag_ ## compiler(version, ignore, option) 241 #define __diag_warn(compiler, version, option, comment) \ argument 242 __diag_ ## compiler(version, warn, option) 243 #define __diag_error(compiler, version, option, comment) \ argument 244 __diag_ ## compiler(version, error, option)
|
/u-boot/arch/arm/ |
A D | config.mk | 26 $(call cc-option,-mgeneral-regs-only) \ 27 $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) 30 LLVM_RELFLAGS := $(call cc-option,-mllvm,) \ 31 $(call cc-option,-mno-movt,) 47 $(call cc-option,-marm,)\ 48 $(call cc-option,-mno-thumb-interwork,)\ 51 PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \ 52 $(call cc-option,-mno-thumb-interwork,) 87 PF_CPPFLAGS_ABI := $(call cc-option,\ 89 $(call cc-option,\ [all …]
|
/u-boot/arch/arm/mach-omap2/omap5/ |
A D | Kconfig | 61 expected to specify a pre-computed time using the above option. 82 This config option enables Normal OPP for MPU. This is the safest 83 option for booting. 97 option for booting and choose this when unsure about other OPPs . 102 This config option enables Over drive OPP for DSPEVE. 107 This config option enables High OPP for DSPEVE. 120 This config option enables Normal OPP for IVA. This is the safest 126 This config option enables Over drive OPP for IVA. 131 This config option enables High OPP for IVA. 150 This config option enables Over drive OPP for GPU. [all …]
|
/u-boot/arch/powerpc/cpu/mpc85xx/ |
A D | config.mk | 13 PLATFORM_CPPFLAGS += $(call cc-option,-mno-spe) \ 14 $(call cc-option,-mspe=no) 17 PLATFORM_CPPFLAGS += $(call cc-option,-mno-altivec) 18 PLATFORM_CPPFLAGS += $(call cc-option,-mno-vsx)
|
/u-boot/arch/arm/lib/ |
A D | cache-cp15.c | 26 enum dcache_option option) in set_section_phys() argument 41 value |= option; in set_section_phys() 47 void set_section_dcache(int section, enum dcache_option option) in set_section_dcache() argument 49 set_section_phys(section, (u32)section << MMU_SECTION_SHIFT, option); in set_section_dcache() 58 size_t size, enum dcache_option option) in mmu_set_region_dcache_behaviour_phys() argument 75 option); in mmu_set_region_dcache_behaviour_phys() 78 option); in mmu_set_region_dcache_behaviour_phys() 81 set_section_phys(upto, phys, option); in mmu_set_region_dcache_behaviour_phys() 310 enum dcache_option option) in mmu_set_region_dcache_behaviour() argument 331 enum dcache_option option) in mmu_set_region_dcache_behaviour() argument [all …]
|
/u-boot/arch/riscv/lib/ |
A D | semihosting.S | 12 .option push 13 .option norvc /* semihosting sequence must be 32-bit wide */ 18 .option pop
|
/u-boot/lib/crypto/ |
A D | Kconfig | 5 This option provides support for a key type that holds the data for 16 This option provides support for a key type that holds the data for 24 This option provides support for asymmetric public key type handling. 33 This option provides support for asymmetric public key type handling in the SPL. 45 This option provides support for parsing a blob containing RSA 56 This option provides support for parsing a blob containing RSA 68 This option provides support for parsing X.509 format blobs for key 79 This option provides support for parsing PKCS#7 format messages for 91 This option provides support for parsing MicroSoft's Authenticode
|
/u-boot/arch/arm/mach-meson/ |
A D | Kconfig | 66 This option contains information about board name. 67 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will 79 This option contains information about board name. 80 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will 87 This option contains information about board configuration name. 88 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
|
/u-boot/arch/arm/mach-versal/ |
A D | Kconfig | 20 This option contains information about board configuration name. 21 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header 39 If defined this option is used to setup different space for 47 This option if enabled defines the TCM and OCM memory and its 53 This option configures MMU with no DDR to avoid speculative
|
/u-boot/arch/arm/mach-imx/ |
A D | cache.c | 46 enum dcache_option option = DCACHE_WRITETHROUGH; in enable_caches() local 48 enum dcache_option option = DCACHE_WRITEBACK; in enable_caches() 62 option); in enable_caches() 65 option); in enable_caches()
|
/u-boot/arch/arm/mach-bcm283x/ |
A D | Kconfig | 58 the A, A+, B, B+, Compute Module, and Zero. This option cannot 62 This option creates a build targeting the ARM1176 ISA. 71 This option assumes the VideoCore firmware is configured to use the 74 non-default option must be present in config.txt: enable_uart=1. 78 This option creates a build targeting the ARMv7/AArch32 ISA. 87 This option also supports BCM2837-based variants such as the RPi 3 101 This option creates a build targeting the ARMv7/AArch32 ISA. 117 This option creates a build targeting the ARMv7/AArch32 ISA. 145 This option creates a build targeting the ARMv8/AArch64 ISA. 164 This option creates a build targeting the ARMv7/AArch32 ISA. [all …]
|
/u-boot/drivers/pinctrl/ |
A D | Kconfig | 82 This option is an SPL-variant of the PINCTRL option. 89 This option is an TPL variant of the PINCTRL option. 96 This option is an VPL variant of the PINCTRL option. 105 This option is an SPL variant of the PINCTRL_FULL option. 112 This option is a TPL variant of the PINCTRL_FULL option. 119 This option is a VPL variant of the PINCTRL_FULL option. 127 This option is an SPL-variant of the PINCTRL_GENERIC option. 135 This option is an SPL-variant of the PINMUX option. 148 This option is an SPL-variant of the PINCONF option. 157 This option is an SPL-variant of the PINCONF_RECURSIVE option. [all …]
|
/u-boot/tools/ |
A D | imx8image.c | 105 param_stack[p_idx].option = FLAG; in parse_cfg_cmd() 185 param_stack[p_idx].option = M40; in parse_cfg_fld() 197 param_stack[p_idx].option = in parse_cfg_fld() 203 param_stack[p_idx].option = in parse_cfg_fld() 209 param_stack[p_idx].option = in parse_cfg_fld() 860 switch (img_sp->option) { in build_container() 987 if (img_sp->option == M40 || img_sp->option == M41 || in build_container() 988 img_sp->option == AP || img_sp->option == DATA || in build_container() 989 img_sp->option == SCD || img_sp->option == SCFW || in build_container() 990 img_sp->option == SECO || img_sp->option == MSG_BLOCK || in build_container() [all …]
|
A D | k3_gen_x509_cert.sh | 125 for option in "${!options_help[@]}" 127 arg=`echo ${options_help[$option]}|cut -d ':' -f1` 131 echo -n "[-$option$arg] " 135 for option in "${!options_help[@]}" 137 arg=`echo ${options_help[$option]}|cut -d ':' -f1` 138 txt=`echo ${options_help[$option]}|cut -d ':' -f2` 144 echo -e " -$option$arg:$tb$txt"
|
/u-boot/drivers/dfu/ |
A D | Kconfig | 25 This option allows performing update of DFU-managed medium with data 33 This option adds an optional timeout parameter for DFU which, if set, 39 This option enables using DFU to read and write to MMC based storage. 46 This option enables using DFU to read and write to on any MTD device. 53 This option enables using DFU to read and write to NAND based 66 This option enables using DFU to read and write RAM on the target. 71 This option enables using DFU to read and write to SPI flash based 79 This option enables the support of "part" and "partubi" target in 85 This option enables using DFU to read and write to VIRTUAL device 92 This option allows to call the function set_dfu_alt_info to
|
/u-boot/drivers/usb/musb-new/ |
A D | Makefile | 18 ccflags-y := $(call cc-option,-Wno-unused-variable) \ 19 $(call cc-option,-Wno-unused-but-set-variable) \ 20 $(call cc-option,-Wno-unused-label)
|
/u-boot/arch/arm/mach-octeontx2/ |
A D | config.mk | 2 PLATFORM_CPPFLAGS += $(call cc-option,-march=armv8.2-a,) 3 PLATFORM_CPPFLAGS += $(call cc-option,-mtune=octeontx2,)
|
/u-boot/board/sunxi/ |
A D | Kconfig | 8 Select this option to embed the SPL binary in an eGON.BT0 image, 11 This is usually the correct option to choose. 16 Select this option to embed the SPL binary in a TOC0 image,
|
/u-boot/drivers/clk/at91/ |
A D | Kconfig | 6 This option is used to enable the AT91 clock driver. 23 This option is used to enable the AT91 UTMI PLL clock 34 This option is used to enable the USB Input Clock, from 42 This option is used to enable the AT91 H32MX matrixes 52 This option is used to enable the AT91 generic clock 62 This option is used to enable the AT91 SAM9X60's PLL clock 69 This option is used to enable the AT91 SAM9X60's USB clock
|
/u-boot/lib/optee/ |
A D | Kconfig | 5 Selecting this option will enable the shared OPTEE library code. 10 Selecting this option to boot OPTEE images. 11 This option enable the OPTEE specific checks done before booting
|