summaryrefslogtreecommitdiffstats
path: root/ci/envs/host-setup0.sh
blob: e852726d749ec56d671254ba23e80623acabbc65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash

##############################################################################
## Copyright (c) 2015 Intel Corp.
##
## All rights reserved. This program and the accompanying materials
## are made available under the terms of the Apache License, Version 2.0
## which accompanies this distribution, and is available at
## http://www.apache.org/licenses/LICENSE-2.0
###############################################################################

source utils.sh
source host-config

KERNEL_VERSION=$( getKernelVersion )
if [ -z $KERNEL_VERSION ];then
   echo "Kernel RPM not found"
   exit 1
fi
rpmdir=${1:-"/root/workspace/rpm/"}
rpmpat="kernel-${KERNEL_VERSION}*.rpm"
rpmdev="kernel-devel-${KERNEL_VERSION}*.rpm"

config_grub () {
    key=$1
    val=$2

    if  grep '[" ]'${key} /etc/default/grub > /dev/null ; then
        sed -i  's/\([" ]\)'${key}'=[^ "]*/\1'${key}'='${val}'/' /etc/default/grub
    else
        sed -i 's/GRUB_CMDLINE_LINUX="\(.*\)"/GRUB_CMDLINE_LINUX="\1 '${key}'='${val}'"/' /etc/default/grub
    fi
}

# The script's caller should passing the rpm directory that is built out from
# build.sh. The default rpmdir is the one used by yardstick scripts.
install_kernel () {
    # Install the kernel rpm
    filenum=`ls -l ${rpmdir}/${rpmpat} |wc -l`
    if [ $filenum -eq 0 ]
    then
    	echo "No kernel rpm found in workspace/rpm"
    	exit 1
    elif [ $filenum -gt 1 ]
    then
    	echo "Multiple kernel rpm found in workspace/rpm"
    	exit 1
    else
    	krpm=`find "${rpmdir}" -name "${rpmpat}"`
        kdrpm=`find "${rpmdir}" -name "${rpmdev}"`
    	rpm -ihv $krpm
        rpm -ihv $kdrpm
    fi
}

# Isolate CPUs from the general scheduler
config_grub 'isolcpus' ${host_isolcpus}

# Stop timer ticks on isolated CPUs whenever possible
config_grub 'nohz_full' ${host_isolcpus}

# Do not call RCU callbacks on isolated CPUs
config_grub 'rcu_nocbs' ${host_isolcpus}

# Enable intel iommu driver and disable DMA translation for devices
config_grub 'iommu' 'pt'
config_grub 'intel_iommu' 'on'

# Set HugeTLB pages to 1GB
config_grub 'default_hugepagesz' '1G'
config_grub 'hugepagesz' '1G'

# Disable machine check
config_grub 'mce' 'off'

## Use polling idle loop to improve performance
config_grub 'idle' 'poll'

## Disable clocksource verification at runtime
config_grub 'tsc' 'reliable'

install_kernel

grub2-mkconfig -o /boot/grub2/grub.cfg