| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | checkpatch.py | 74 re_stats = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)') 75 re_stats_full = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)' 77 re_ok = re.compile('.*has no obvious style problems') 78 re_bad = re.compile('.*has style problems, please review') 79 re_error = re.compile('ERROR: (.*)') 80 re_warning = re.compile('WARNING: (.*)') 81 re_check = re.compile('CHECK: (.*)') 82 re_file = re.compile('#\d+: FILE: ([^:]*):(\d+):')
|
| H A D | patchstream.py | 18 re_remove = re.compile('^BUG=|^TEST=|^BRANCH=|^Change-Id:|^Review URL:' 22 re_allowed_after_test = re.compile('^Signed-off-by:') 25 re_signoff = re.compile('^Signed-off-by: *(.*)') 28 re_cover = re.compile('^Cover-letter:') 31 re_cover_cc = re.compile('^Cover-letter-cc: *(.*)') 34 re_series_tag = re.compile('^Series-([a-z-]*): *(.*)') 37 re_commit_tag = re.compile('^Commit-([a-z-]*): *(.*)') 40 re_tag = re.compile('^(Tested-by|Acked-by|Reviewed-by|Patch-cc): (.*)') 43 re_commit = re.compile('^commit ([0-9a-f]*)$') 46 re_space_before_tab = re.compile('^[+].* \t') [all …]
|
| H A D | commit.py | 9 re_subject_tag = re.compile('([^:\s]*):\s*(.*)')
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.clang | 1 The biggest problem when trying to compile U-Boot with clang is that 14 the generic board will fail to compile, but since those are expected 16 will also fail to compile, but there is in no strict reason to do so 20 NOTE: without the -mllvm -arm-use-movt=0 flags U-Boot will compile 30 CROSS_COMPILE. To compile U-Boot with clang on linux without IAS use e.g.: 34 It can also be used to compile sandbox: 46 # The following commands compile U-Boot using the clang xdev toolchain.
|
| H A D | README.ublimage | 26 You can generate the image directly when you compile u-boot with: 79 compile steps: 81 1) nand_spl code compile, with pad_to = (TEXT_BASE + 88 2) compile u-boot.bin ("normal" u-boot)
|
| H A D | README.kconfig | 113 Define CONFIG_SYS_CPU="cpu" to compile arch/<arch>/cpu/<cpu> 114 Define CONFIG_SYS_SOC="soc" to compile arch/<arch>/cpu/<cpu>/<soc> 115 Define CONFIG_SYS_VENDOR="vendor" to compile board/<vendor>/common/* 117 Define CONFIG_SYS_BOARD="board" to compile board/<board>/*
|
| H A D | README.s5pc1xx | 15 While ARM Cortex-A8 support ARM v7 instruction set (-march=armv7a) we compile
|
| H A D | README.ubispl | 20 The maximum physical erase block size. Either a compile time 25 The maximum physical erase block count. Either a compile time
|
| H A D | README.blackfin | 37 To compile the Blackfin aspects, you'll need the GNU toolchain configured for
|
| H A D | README.marvell | 4 This document describes how to compile the U-Boot and how to change U-Boot configuration
|
| H A D | README.rmobile | 19 But currently we compile with -march=armv5 to allow more compilers to work.
|
| H A D | README.mpc83xxads | 60 export CROSS_COMPILE=your-cross-compile-prefix
|
| /rk3399_rockchip-uboot/test/py/ |
| H A D | u_boot_console_base.py | 20 pattern_u_boot_spl_signon = re.compile('(U-Boot SPL \\d{4}\\.\\d{2}[^\r\n]*\\))') 21 pattern_u_boot_main_signon = re.compile('(U-Boot \\d{4}\\.\\d{2}[^\r\n]*\\))') 22 pattern_stop_autoboot_prompt = re.compile('Hit any key to stop autoboot: ') 23 pattern_unknown_command = re.compile('Unknown command \'.*\' - try \'help\'') 24 pattern_error_notification = re.compile('## Error: ') 25 pattern_error_please_reset = re.compile('### ERROR ### Please RESET the board ###') 109 self.prompt_compiled = re.compile('^' + re.escape(self.prompt), re.MULTILINE)
|
| H A D | u_boot_spawn.py | 49 self.re_vt100 = re.compile('(\x1b\[|\x9b)[^@-_a-z]*[@-_a-z]|\x1b[@-_a-z]') 140 patterns[pi] = re.compile(patterns[pi])
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | microcode-tool.py | 50 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 51 re_license = re.compile('/[^-*+] *(.*)$') 52 re_name = re.compile('/\* *(.*)\.inc *\*/', re.IGNORECASE)
|
| H A D | microcode-tool | 50 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 51 re_license = re.compile('/[^-*+] *(.*)$') 52 re_name = re.compile('/\* *(.*)\.inc *\*/', re.IGNORECASE)
|
| H A D | moveconfig.py | 575 pattern_if = re.compile(r'#\s*if(def|ndef)?\W') # #if, #ifdef, #ifndef 576 pattern_elif = re.compile(r'#\s*el(if|se)\W') # #elif, #else 577 pattern_endif = re.compile(r'#\s*endif\W') # #endif 578 pattern_blank = re.compile(r'^\s*$') # empty line 621 patterns.append(re.compile(r'#\s*define\s+%s\W' % config)) 622 patterns.append(re.compile(r'#\s*undef\s+%s\W' % config)) 736 patterns.append(re.compile(r'^\s+%s' % config)) 800 re_arch = re.compile(r'CONFIG_SYS_ARCH="(.*)"') 801 re_cpu = re.compile(r'CONFIG_SYS_CPU="(.*)"')
|
| /rk3399_rockchip-uboot/arch/mips/ |
| H A D | Kconfig | 342 The total size of the L1 Dcache, if known at compile time. 348 The size of L1 Dcache lines, if known at compile time. 354 The total size of the L1 ICache, if known at compile time. 360 The size of L1 Icache lines, if known at compile time. 369 so if you know the cache configuration for your system at compile
|
| /rk3399_rockchip-uboot/test/ |
| H A D | Kconfig | 4 Select this to compile in unit tests for various parts of
|
| /rk3399_rockchip-uboot/scripts/dtc/pylibfdt/ |
| H A D | setup.py | 27 RE_KEY_VALUE = re.compile('(?P<key>\w+) *(?P<plus>[+])?= *(?P<value>.*)$')
|
| /rk3399_rockchip-uboot/test/py/tests/ |
| H A D | test_ums.py | 141 u_boot_console.wait_for(re.compile('UMS: LUN.*[\r\n]'))
|
| /rk3399_rockchip-uboot/fs/jffs2/ |
| H A D | LICENCE | 21 macros or inline functions from these files, or you compile these
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | slre.c | 321 compile(struct slre *r, const char **re) in compile() function 364 compile(r, re); in compile() 424 compile(r, &re); in slre_compile()
|
| /rk3399_rockchip-uboot/board/keymile/km83xx/ |
| H A D | README.kmeter1 | 32 export CROSS_COMPILE=your-cross-compile-prefix
|
| /rk3399_rockchip-uboot/board/pb1x00/ |
| H A D | README | 29 Have this in mind when you compile u-boot. CONFIG_SYS_TEXT_BASE has
|