brintos

brintos / linux-shallow public Read only

0
0
Text · 1.7 KiB · a82a3c5 Raw
54 lines · plain
1# This example was used to boot the snowball ARM board.2# See http://people.redhat.com/srostedt/ktest-embedded-2012/3 4# PWD is a ktest.pl variable that will result in the process working5# directory that ktest.pl is executed in.6 7# THIS_DIR is automatically assigned the PWD of the path that generated8# the config file. It is best to use this variable when assigning other9# directory paths within this directory. This allows you to easily10# move the test cases to other locations or to other machines.11#12THIS_DIR := /home/rostedt/work/demo/ktest-embed13LOG_FILE = ${OUTPUT_DIR}/snowball.log14CLEAR_LOG = 115MAKE_CMD = PATH=/usr/local/gcc-4.5.2-nolibc/arm-unknown-linux-gnueabi/bin:$PATH CROSS_COMPILE=arm-unknown-linux-gnueabi- make ARCH=arm16ADD_CONFIG = ${THIS_DIR}/addconfig17 18SCP_TO_TARGET = echo "don't do scp"19 20TFTPBOOT := /var/lib/tftpboot21TFTPDEF := ${TFTPBOOT}/snowball-default22TFTPTEST := ${OUTPUT_DIR}/${BUILD_TARGET}23 24SWITCH_TO_GOOD = cp ${TFTPDEF} ${TARGET_IMAGE}25SWITCH_TO_TEST = cp ${TFTPTEST} ${TARGET_IMAGE}26 27# Define each test with TEST_START28# The config options below it will override the defaults29TEST_START SKIP30TEST_TYPE = boot31BUILD_TYPE = u8500_defconfig32BUILD_NOCLEAN = 133 34TEST_START35TEST_TYPE = make_min_config36OUTPUT_MIN_CONFIG = ${THIS_DIR}/config.newmin37START_MIN_CONFIG = ${THIS_DIR}/config.orig38IGNORE_CONFIG = ${THIS_DIR}/config.ignore39BUILD_NOCLEAN = 140 41 42DEFAULTS43LOCALVERSION = -test44POWER_CYCLE = echo use the thumb luke; read a45CONSOLE = cat ${THIS_DIR}/snowball-cat46REBOOT_TYPE = script47SSH_USER = root48BUILD_OPTIONS = -j8 uImage49BUILD_DIR = ${THIS_DIR}/linux.git50OUTPUT_DIR = ${THIS_DIR}/snowball-build51MACHINE = snowball52TARGET_IMAGE = /var/lib/tftpboot/snowball-image53BUILD_TARGET = arch/arm/boot/uImage54