ACRN: Packaging: Terminology for UOS/SOS in Packaging script

Rename the sos to Service VM in Packaging script.

Tracked-On: #6908
Signed-off-by: Liu Long <long.liu@linux.intel.com>
This commit is contained in:
Liu Long 2021-12-02 14:38:51 +08:00 committed by wenlingz
parent d128923ed9
commit 811ffe0117
4 changed files with 9 additions and 9 deletions

View File

@ -27,10 +27,10 @@ while IFS= read -r line; do
fi fi
done < <(blkid |grep ext4 |grep ${type}) done < <(blkid |grep ext4 |grep ${type})
if ls /boot/vmlinuz*acrn-sos* 1> /dev/null 2>&1;then if ls /boot/vmlinuz*acrn-service-vm* 1> /dev/null 2>&1;then
sos_kernel=$(ls -tr /boot/vmlinuz-*acrn-sos* | tail -1) service_vm_kernel=$(ls -tr /boot/vmlinuz-*acrn-service-vm* | tail -1)
else else
sos_kernel=$(ls /boot/vmlinuz-* | tail -1) service_vm_kernel=$(ls /boot/vmlinuz-* | tail -1)
fi fi
if [ -z "$menu" ];then if [ -z "$menu" ];then
@ -51,6 +51,6 @@ EOF
fi fi
sed -i '/Linux_bzImage/d' ${filename} || true sed -i '/Linux_bzImage/d' ${filename} || true
sed -i '/multiboot2 \/boot/a\module2 '$sos_kernel' Linux_bzImage' ${filename} sed -i '/multiboot2 \/boot/a\module2 '$service_vm_kernel' Linux_bzImage' ${filename}
sync sync

View File

@ -44,7 +44,7 @@ in the ``misc/packaging`` folder, so let's go there::
Configure Debian Packaging Details Configure Debian Packaging Details
********************************** **********************************
The build and packaging script ``install_uSoS.py`` does all the work to The build and packaging script ``install_uServiceVM.py`` does all the work to
build and make the Debian packages. You configure what the script does build and make the Debian packages. You configure what the script does
by editing its configuration file, ``release.json``. Comments in the by editing its configuration file, ``release.json``. Comments in the
JSON file document how you can adjust things to your specific needs. For JSON file document how you can adjust things to your specific needs. For
@ -66,7 +66,7 @@ Here's the default ``release.json`` configuration:
Run the Package-Building Script Run the Package-Building Script
******************************* *******************************
The ``install_uSoS.py`` Python script does all the work to install The ``install_uServiceVM.py`` Python script does all the work to install
needed tools (such as make, gnu-efi, libssl-dev, libpciaccess-dev, needed tools (such as make, gnu-efi, libssl-dev, libpciaccess-dev,
uuid-dev, and more). It also verifies that tool versions (such as the uuid-dev, and more). It also verifies that tool versions (such as the
gcc compiler) are appropriate (as configured in the ``release.json`` gcc compiler) are appropriate (as configured in the ``release.json``
@ -75,7 +75,7 @@ file).
The script runs without further user input, and must be run with The script runs without further user input, and must be run with
``sudo``:: ``sudo``::
sudo python3 install_uSoS.py sudo python3 install_uServiceVM.py
With the default ``release.json`` configuration, this script will run With the default ``release.json`` configuration, this script will run
for about 30 minutes, but could take longer depending on your internet for about 30 minutes, but could take longer depending on your internet

View File

@ -1,5 +1,5 @@
{ {
"//":"release ubuntu as sos verion", "//":"release ubuntu as Service VM OS verion",
"install_package":"true", "install_package":"true",
"gcc_version":"7.3.0", "gcc_version":"7.3.0",
"binutils":"2.27", "binutils":"2.27",
@ -56,7 +56,7 @@
}, },
"kernel_release_version":"remotes/origin/release_2.1", "kernel_release_version":"remotes/origin/release_2.1",
"sos_kernel_repo":"https://github.com/projectacrn/acrn-kernel.git", "service_vm_os_kernel_repo":"https://github.com/projectacrn/acrn-kernel.git",
"acrn_kernel_deb_package":"true", "acrn_kernel_deb_package":"true",
"install_acrn_kernel_deb":"false", "install_acrn_kernel_deb":"false",
"//":"misc", "//":"misc",