#!/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 ue='8fb75b79cd98944c118861ff3194caf731f5ec5a'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/Kconfig
AgeCommit message (Expand)Author
2020-05-12kbuild: ensure full rebuild when the compiler is updatedMasahiro Yamada
2019-06-14docs: kbuild: convert docs to ReST and rename to *.rstMauro Carvalho Chehab
2019-06-07docs: Kbuild/Makefile: allow check for missing docs at build timeMauro Carvalho Chehab
2018-08-02kconfig: move the "Executable file formats" menu to fs/Kconfig.binfmtChristoph Hellwig
2018-08-02Kconfig: consolidate the "Kernel hacking" menuChristoph Hellwig
2018-08-02kconfig: include common Kconfig files from top-level KconfigChristoph Hellwig
2018-05-29kconfig: add basic helper macros to scripts/Kconfig.includeMasahiro Yamada
2018-05-29kconfig: show compiler version text in the top commentMasahiro Yamada
2018-05-29kconfig: reference environment variables directly and remove 'option env='Masahiro Yamada
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman