-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmodifyKernelParam.sh
executable file
·58 lines (49 loc) · 1.37 KB
/
modifyKernelParam.sh
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
#!/bin/bash
source ./path.sh
source ./getKernelSourcePath.sh
# 指定したカーネルパラメータが指定されているconfigファイルを探す
# $1 : パラメータ名
# return : 0:正常 1:エラー
getTargetConfigName(){
local kernel_fullpath=`getKernelSourcePath`
if [ -z "${kernel_fullpath}" ]; then
return 1
fi
pushd . > /dev/null
cd ${kernel_fullpath}/chromeos/config
local arch="i386"
if [ $(echo ${BOARD} | grep -e 'amd64') ]; then
arch="x86_64"
fi
#local target_line=`find . -name '*.config' -print | grep -e 'base\|x86_64/' | xargs grep $1`
local target_line=`find . -name '*.config' -print | grep -e "base\|${arch}/" | xargs grep $1`
local target_configname=${kernel_fullpath}/chromeos/config/`echo ${target_line}|cut -d ":" -f 1 `
echo ${target_configname}
popd > /dev/null
return 0
}
# カーネルパラメータの現在の設定を指定した内容に置き換える
# $1 設定する内容:param=valueの形式
# $2 編集する設定ファイル名
modifyKernelParam(){
#echo $1
#echo $2
local target_param=`echo $1 | cut -d '=' -f 1`
#echo ${target_param}
local sedscript="s/^.*${target_param}.*\$/$1/"
echo ${sedscript}
sed -e "${sedscript}" $2 > $2.new
if [ 0 -ne $? ]; then
rm $2.new
return $?
fi
mv -f $2 $2.old
mv $2.new $2
}
param_name=`echo $1 | cut -d "=" -f 1`
config_path=`getTargetConfigName ${param_name}`
if [ 0 -ne $? ]; then
exit
fi
modifyKernelParam $1 ${config_path}
#echo ${config_path}