aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAyan Kumar Halder2022-01-20 11:11:42 +0000
committerStefano Stabellini2022-01-20 10:36:12 -0800
commit3780f67696f4b95efda0a2c3d8405ba85128632c (patch)
tree4c122fd2cfc8914ba60bcb003bb5657bb26e66fe /scripts
parent8f01717f27341e554fa39ed6f026a0d333fb4790 (diff)
Specify the memory and virtual cpu count for DOM0
Introduced the new config options :- DOM0_MEM - To specify the amount of memory (in MB) that is assigned to Dom0. DOM0_VCPUS - To specify the count of virtual CPUs for Dom0. These options are used to set XEN_CMD. Signed-off-by: Ayan Kumar Halder <ayankuma@xilinx.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/uboot-script-gen18
1 files changed, 17 insertions, 1 deletions
diff --git a/scripts/uboot-script-gen b/scripts/uboot-script-gen
index 71669a9..84faf6c 100755
--- a/scripts/uboot-script-gen
+++ b/scripts/uboot-script-gen
@@ -313,7 +313,23 @@ function xen_config()
{
if [ -z "$XEN_CMD" ]
then
- XEN_CMD="console=dtuart dtuart=serial0 dom0_mem=1G dom0_max_vcpus=1 bootscrub=0 vwfi=native sched=null"
+ if [ -z "$DOM0_MEM" ]
+ then
+ DOM0_MEM="1024"
+ fi
+
+ if [ -z "$DOM0_VCPUS" ]
+ then
+ DOM0_VCPUS="1"
+ fi
+
+ XEN_CMD="console=dtuart dtuart=serial0 dom0_mem=${DOM0_MEM}M dom0_max_vcpus=${DOM0_VCPUS} bootscrub=0 vwfi=native sched=null"
+ else
+ if [ "$DOM0_MEM" ] || [ "$DOM0_VCPUS" ]
+ then
+ echo "One can specify either XEN_CMD or (DOM0_MEM and/or DOM0_VCPUS)"
+ exit
+ fi
fi
if [ -z "$DOM0_CMD" ]