Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 72) sorted by relevance

123

/rk3399_rockchip-uboot/test/py/
H A Du_boot_console_exec_attach.py21 def __init__(self, log, config): argument
36 super(ConsoleExecAttach, self).__init__(log, config, max_fifo_fill=16)
38 with self.log.section('flash'):
39 self.log.action('Flashing U-Boot')
41 runner = self.log.get_runner(cmd[0], sys.stdout)
44 self.log.status_pass('OK')
62 self.log.action('Resetting board')
64 runner = self.log.get_runner(cmd[0], sys.stdout)
H A Dconftest.py28 log = None variable
88 global log
121 log = multiplexed_log.Logfile(result_dir + '/test-log.html')
132 with log.section('make'):
133 runner = log.get_runner('make', sys.stdout)
137 log.status_pass('OK')
198 console = u_boot_console_sandbox.ConsoleSandbox(log, ubconfig)
201 console = u_boot_console_exec_attach.ConsoleExecAttach(log, ubconfig)
312 return console.log
380 if log:
[all …]
H A Du_boot_console_base.py81 def __init__(self, log, config, max_fifo_fill): argument
101 self.log = log
105 self.logstream = self.log.get_stream('console', sys.stdout)
215 self.log.error(str(ex))
219 self.log.timestamp()
251 self.log.action('Sending Ctrl-C')
331 self.log.start_section('Starting U-Boot')
371 self.log.error(str(ex))
375 self.log.timestamp()
376 self.log.end_section('Starting U-Boot')
H A Du_boot_utils.py78 u_boot_console.log.action('Persistent data file ' + self.abs_fn +
82 u_boot_console.log.action('Generating ' + self.abs_fn +
174 runner = u_boot_console.log.get_runner(cmd[0], sys.stdout)
192 runner = u_boot_console.log.get_runner(cmd[0], sys.stdout)
229 with u_boot_console.log.section('find_ram_base'):
H A Du_boot_console_sandbox.py16 def __init__(self, log, config): argument
27 super(ConsoleSandbox, self).__init__(log, config, max_fifo_fill=1024)
67 self.log.action('kill %d' % sig)
H A Dmultiplexed_log.css9 * This provides pretty formatting of the HTML log file, e.g.
10 * - colored bars beside/above log sections for easily parsed delineation.
H A Dmultiplexed_log.py183 def __init__(self, log, marker, anchor): argument
195 self.log = log
200 self.anchor = self.log.start_section(self.marker, self.anchor)
203 self.log.end_section(self.marker)
/rk3399_rockchip-uboot/test/py/tests/
H A Dtest_dfu.py154 u_boot_console.log.action(
166 u_boot_console.log.action('Waiting for DFU USB device to appear')
188 u_boot_console.log.action(
191 u_boot_console.log.action(
268 u_boot_console.log.action('Writing test data to DFU primary ' +
272 u_boot_console.log.action('Writing dummy data to DFU secondary ' +
276 u_boot_console.log.action('Reading DFU primary altsetting for ' +
280 u_boot_console.log.action('Comparing written and read data')
308 u_boot_console.log.action(
313 with u_boot_console.log.section('Data size %d' % size):
[all …]
H A Dtest_ums.py100 u_boot_console.log.warning(
137 u_boot_console.log.action(
143 u_boot_console.log.action('Reading raw data from UMS device')
157 u_boot_console.log.action('Mounting exported UMS device')
174 u_boot_console.log.action('Unmounting UMS device')
194 u_boot_console.log.action(
208 u_boot_console.log.action('Writing test file via UMS')
226 u_boot_console.log.action('Reading test file back via UMS')
H A Dtest_vboot.py71 with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)):
101 cons.log.action('%s: Sign images' % sha_algo)
122 cons.log.action('%s: Test FIT with signed images' % sha_algo)
133 cons.log.action('%s: Test FIT with signed configuration' % sha_algo)
141 cons.log.action('%s: Check signed config on the host' % sha_algo)
158 cons.log.action('%s: Check bad config on the host' % sha_algo)
H A Dtest_fit.py363 with cons.log.section('Kernel load'):
384 with cons.log.section('Kernel + FDT load'):
395 with cons.log.section('Kernel + FDT + Ramdisk load'):
404 with cons.log.section('Kernel + FDT + Ramdisk load + Loadables'):
/rk3399_rockchip-uboot/scripts/
H A Drepack-bootimg116 log="$out/unpack.log"
119 $srctree/scripts/unpack_bootimg --boot_img $boot_img --out $out > $log
121 cmdline=$(grep -a "^command line args: " $log | tr '\0' '\n'| sed "s/^command line args: //")
122 extra_cmdline=$(grep -a "^additional command line args: " $log | tr '\0' '\n'| sed "s/^additional c…
123 version=$(grep -a "^boot image header version: " $log | sed "s/^boot image header version: //")
124 os_version=$(grep -a "^os version: " $log | sed "s/^os version: //")
125 os_patch_level=$(grep -a "^os patch level: " $log | sed "s/^os patch level: //")
127 dtb_size=$(grep -a "^dtb size: " $log | sed "s/^dtb size: //")
133 recovery_dtbo_size=$(grep -a "^recovery dtbo size: " $log | sed "s/^recovery dtbo size: //")
H A Dsetlocalversion76 …date=`git log -1 --author='@rock-chips' --date=format:%y%m%d | sed -n '/Date:/p' | awk '{ print "-…
95 id=`hg log -r . --template '{latesttag}'`
/rk3399_rockchip-uboot/doc/
H A DREADME.log42 Logging can come from a wide variety of places within U-Boot. Each log message
62 CONFIG_MAX_LOG_LEVEL - Max log level to build (anything higher is compiled
64 CONFIG_LOG_CONSOLE - Enable writing log records to the console
100 Filters are attached to log drivers to control what those drivers emit. Only
105 - maximum log level
118 log(category, level, format_string, ...)
120 Also debug() and error() will generate log records - these use LOG_CATEGORY
158 all of these can use LOG_CATEGORY as the category, and a log level
168 Convert debug() statements in the code to log() statements
170 Support making printf() emit log statements a L_INFO level
[all …]
/rk3399_rockchip-uboot/include/
H A Dlog.h96 #define log(_cat, _level, _fmt, _args...) ({ \ macro
121 log(LOG_CATEGORY, LOGL_DEBUG, fmt, ##args); \
166 log(LOG_CATEGORY, LOGL_ERR, "returning err=%d\n", __ret); \
172 log(LOG_CATEGORY, LOGL_ERR, "%s: returning err=%d\n", _msg, \
/rk3399_rockchip-uboot/tools/
H A Dmoveconfig.py939 log = ''
962 log += color_text(self.options.color, log_color, actlog) + '\n'
974 return (updated, suspicious, log)
984 log = ''
993 log += color_text(self.options.color, COLOR_YELLOW,
997 return log
1096 self.log = ''
1148 self.log += color_text(self.options.color, COLOR_LIGHT_RED,
1151 self.log += color_text(self.options.color, COLOR_LIGHT_CYAN,
1172 self.log += color_text(self.options.color, COLOR_YELLOW,
[all …]
/rk3399_rockchip-uboot/scripts/dtc/
H A Dupdate-dtc-source.sh42 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'
52 dtc_log=$(git log --oneline ${last_dtc_ver}..)
/rk3399_rockchip-uboot/doc/DocBook/
H A D.gitignore9 *.log
/rk3399_rockchip-uboot/test/
H A DMakefile14 obj-$(CONFIG_$(SPL_)LOG) += log/
/rk3399_rockchip-uboot/fs/ubifs/
H A DMakefile15 obj-y += log.o orphan.o recovery.o replay.o gc.o
/rk3399_rockchip-uboot/fs/jffs2/
H A DKconfig5 Flash File System version 2). JFFS2 is a log-structured file system
/rk3399_rockchip-uboot/arch/arm/mach-imx/
H A DMakefile75 u-boot.imx: MKIMAGEOUTPUT = u-boot.imx.log
83 u-boot-dtb.imx: MKIMAGEOUTPUT = u-boot-dtb.imx.log
92 SPL: MKIMAGEOUTPUT = SPL.log
/rk3399_rockchip-uboot/cmd/
H A Dlog.c59 log, CONFIG_SYS_MAXARGS, 1, do_log,
/rk3399_rockchip-uboot/common/
H A DKconfig18 Calls to show_boot_progress() will also result in log entries but
455 int "Maximum log level to record"
459 This selects the maximum log level that will be recorded. Any value
460 higher than this will be ignored. If possible log statements below
473 int "Maximum log level to record in SPL"
477 This selects the maximum log level that will be recorded. Any value
478 higher than this will be ignored. If possible log statements below
491 bool "Allow log output to the console"
495 Enables a log driver which writes log records to the console.
497 log message is shown - other details like level, category, file and
[all …]
/rk3399_rockchip-uboot/lib/libfdt/
H A DREADME23 "git log" for details.

123