Add pinning support
[apex.git] / build / setkernelparam.sh
1 #!/bin/bash
2
3 ##############################################################################
4 # Copyright (c) 2016 Red Hat Inc.
5 # Michael Chapman <michapma@redhat.com>
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 GRUBCONF='/boot/grub2/grub.conf'
13
14 if [ "$1" == "" ]; then
15   echo "No kernel parameter name provided, not modifying grub.conf"
16   exit 1
17 fi
18
19 if [ "$2" == "" ]; then
20   echo "No kernel parameter value provided, not modifying grub.conf"
21   exit 1
22 fi
23
24 echo "Setting $1=$2 in $GRUBCONF"
25 echo "GRUB_CMDLINE_LINUX=\"\$GRUB_CMDLINE_LINUX $1=$2\"" >> /etc/default/grub
26 grub2-mkconfig > $GRUBCONF
27 exit 0