#!/bin/bash # description: export perf data to a sqlite3 database # args: [database name] [columns] [calls] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 3 ] ; then echo "usage: export-to-sqlite-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-sqlite.py $dbname $columns $calls den' name='id' value='0b98acd6188309333c3a8a6e16feadadd31e4523'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/tools/bootconfig
AgeCommit message (Expand)Author
2020-09-21tools/bootconfig: Add testcase for tailing spaceMasami Hiramatsu
2020-09-21tools/bootconfig: Add testcases for repeated key with braceMasami Hiramatsu
2020-08-03tools/bootconfig: Add testcases for value override operatorMasami Hiramatsu
2020-06-16tools/bootconfig: Add testcase for show-command and quotes testMasami Hiramatsu
2020-06-16tools/bootconfig: Fix to return 0 if succeeded to show the bootconfigMasami Hiramatsu
2020-06-16tools/bootconfig: Fix to use correct quotes for valueMasami Hiramatsu
2020-05-19tools/bootconfig: Add a summary of test cases and return errorMasami Hiramatsu
2020-05-11tools/bootconfig: Fix apply_xbc() to return zero on successSteven Rostedt (VMware)
2020-05-07tools/bootconfig: Fix resource leak in apply_xbc()Yunfeng Ye
2020-04-05Merge tag 'trace-v5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/roste...Linus Torvalds
2020-03-25.gitignore: add SPDX License IdentifierMasahiro Yamada
2020-03-03tools/bootconfig: Show line and column in parse errorMasami Hiramatsu
2020-03-03bootconfig: Support O=<builddir> optionMasami Hiramatsu
2020-02-21bootconfig: Add append value operator supportMasami Hiramatsu
2020-02-21bootconfig: Prohibit re-defining value on same keyMasami Hiramatsu
2020-02-20bootconfig: Reject subkey and value on same parent keyMasami Hiramatsu
2020-02-20tools/bootconfig: Remove unneeded error message silencerMasami Hiramatsu
2020-02-20bootconfig: Add bootconfig magic word for indicating bootconfig explicitlyMasami Hiramatsu
2020-02-10tools/bootconfig: Suppress non-error messagesMasami Hiramatsu
2020-02-10bootconfig: Allocate xbc_nodes array dynamicallyMasami Hiramatsu
2020-02-10tools/bootconfig: Fix wrong __VA_ARGS__ usageMasami Hiramatsu
2020-02-05tools/bootconfig: Show the number of bootconfig nodesMasami Hiramatsu
2020-01-21tools: bootconfig: Fix spelling mistake "faile" -> "failed"Colin Ian King
2020-01-13tools: bootconfig: Add bootconfig test scriptMasami Hiramatsu
2020-01-13tools: bootconfig: Add bootconfig commandMasami Hiramatsu