Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/testing/ktest/examples/include/bootconfig.conf
26299 views
1
# bootconfig.conf
2
#
3
# Tests to test some bootconfig scripts
4
5
# List where on the target machine the initrd is used
6
INITRD := /boot/initramfs-test.img
7
8
# Install bootconfig on the target machine and define the path here.
9
BOOTCONFIG := /usr/bin/bootconfig
10
11
# Currenty we just build the .config in the BUILD_DIR
12
BUILD_TYPE := oldconfig
13
14
# Helper macro to run bootconfig on the target
15
# SSH is defined in include/defaults.conf
16
ADD_BOOTCONFIG := ${SSH} "${BOOTCONFIG} -d ${INITRD} && ${BOOTCONFIG} -a /tmp/${BOOTCONFIG_FILE} ${INITRD}"
17
18
# This copies a bootconfig script to the target and then will
19
# add it to the initrd. SSH_USER is defined in include/defaults.conf
20
# and MACHINE is defined in the example configs.
21
BOOTCONFIG_TEST_PREP = scp ${BOOTCONFIG_PATH}${BOOTCONFIG_FILE} ${SSH_USER}@${MACHINE}:/tmp && ${ADD_BOOTCONFIG}
22
23
# When a test is complete, remove the bootconfig from the initrd.
24
CLEAR_BOOTCONFIG := ${SSH} "${BOOTCONFIG} -d ${INITRD}"
25
26
# Run a verifier on the target after it had booted, to make sure that the
27
# bootconfig script did what it was expected to do
28
DO_TEST = scp ${BOOTCONFIG_PATH}${BOOTCONFIG_VERIFY} ${SSH_USER}@${MACHINE}:/tmp && ${SSH} /tmp/${BOOTCONFIG_VERIFY}
29
30
# Comment this out to not run the boot configs
31
RUN_BOOTCONFIG := 1
32
33
TEST_START IF DEFINED RUN_BOOTCONFIG
34
TEST_TYPE = test
35
TEST_NAME = bootconfig boottrace
36
# Just testing the bootconfig on initrd, no need to build the kernel
37
BUILD_TYPE = nobuild
38
BOOTCONFIG_FILE = boottrace.bconf
39
BOOTCONFIG_VERIFY = verify-boottrace.sh
40
ADD_CONFIG = ${ADD_CONFIG} ${BOOTCONFIG_PATH}/config-bootconfig
41
PRE_TEST = ${BOOTCONFIG_TEST_PREP}
42
PRE_TEST_DIE = 1
43
TEST = ${DO_TEST}
44
POST_TEST = ${CLEAR_BOOTCONFIG}
45
46
TEST_START IF DEFINED RUN_BOOTCONFIG
47
TEST_TYPE = test
48
TEST_NAME = bootconfig function graph
49
BUILD_TYPE = nobuild
50
BOOTCONFIG_FILE = functiongraph.bconf
51
BOOTCONFIG_VERIFY = verify-functiongraph.sh
52
ADD_CONFIG = ${ADD_CONFIG} ${BOOTCONFIG_PATH}/config-bootconfig
53
PRE_TEST = ${BOOTCONFIG_TEST_PREP}
54
PRE_TEST_DIE = 1
55
TEST = ${DO_TEST}
56
POST_TEST = ${CLEAR_BOOTCONFIG}
57
58
TEST_START IF DEFINED RUN_BOOTCONFIG
59
TEST_TYPE = test
60
TEST_NAME = bootconfig tracing
61
BUILD_TYPE = nobuild
62
BOOTCONFIG_FILE = tracing.bconf
63
BOOTCONFIG_VERIFY = verify-tracing.sh
64
ADD_CONFIG = ${ADD_CONFIG} ${BOOTCONFIG_PATH}/config-bootconfig
65
PRE_TEST = ${BOOTCONFIG_TEST_PREP}
66
PRE_TEST_DIE = 1
67
TEST = ${DO_TEST}
68
POST_TEST = ${CLEAR_BOOTCONFIG}
69
70
71