2019-07-26 00:06:41 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
# Copyright (C) 2020 Marvell Inc
|
|
|
|
# Copyright (C) 2014-2015 Curt Brune <curt@cumulusnetworks.com>
|
|
|
|
# Copyright (C) 2014-2015 david_yang <david_yang@accton.com>
|
2019-07-26 00:06:41 -05:00
|
|
|
#
|
2022-07-12 17:00:57 -05:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
# Appends a command to a trap, which is needed because default trap behavior is to replace
|
|
|
|
# previous trap for the same signal
|
|
|
|
# - 1st arg: code to add
|
|
|
|
# - ref: http://stackoverflow.com/questions/3338030/multiple-bash-traps-for-the-same-signal
|
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
|
|
|
|
_trap_push() {
|
|
|
|
local next="$1"
|
|
|
|
eval "trap_push() {
|
|
|
|
local oldcmd='$(echo "$next" | sed -e s/\'/\'\\\\\'\'/g)'
|
|
|
|
local newcmd=\"\$1; \$oldcmd\"
|
|
|
|
trap -- \"\$newcmd\" EXIT INT TERM HUP
|
|
|
|
_trap_push \"\$newcmd\"
|
|
|
|
}"
|
|
|
|
}
|
|
|
|
_trap_push true
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
read_conf_file() {
|
|
|
|
local conf_file=$1
|
|
|
|
while IFS='=' read -r var value || [ -n "$var" ]
|
|
|
|
do
|
|
|
|
# remove newline character
|
|
|
|
var=$(echo $var | tr -d '\r\n')
|
|
|
|
value=$(echo $value | tr -d '\r\n')
|
|
|
|
# remove comment string
|
|
|
|
var=${var%#*}
|
|
|
|
value=${value%#*}
|
|
|
|
# skip blank line
|
|
|
|
[ -z "$var" ] && continue
|
|
|
|
# remove double quote in the beginning
|
|
|
|
tmp_val=${value#\"}
|
|
|
|
# remove double quote in the end
|
|
|
|
value=${tmp_val%\"}
|
|
|
|
eval "$var=\"$value\""
|
|
|
|
done < "$conf_file"
|
|
|
|
}
|
|
|
|
|
2019-07-26 00:06:41 -05:00
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ -d "/etc/sonic" ]; then
|
|
|
|
echo "Installing SONiC in SONiC"
|
|
|
|
install_env="sonic"
|
|
|
|
elif grep -Fxqs "DISTRIB_ID=onie" /etc/lsb-release > /dev/null
|
|
|
|
then
|
|
|
|
echo "Installing SONiC in ONIE"
|
|
|
|
install_env="onie"
|
|
|
|
else
|
|
|
|
echo "Installing SONiC in BUILD"
|
|
|
|
install_env="build"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ -r ./machine.conf ]; then
|
2022-07-12 17:00:57 -05:00
|
|
|
read_conf_file "./machine.conf"
|
2019-07-26 00:06:41 -05:00
|
|
|
fi
|
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
# Load generic onie-image.conf
|
|
|
|
if [ -r ./onie-image.conf ]; then
|
|
|
|
. ./onie-image.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Load arch-specific onie-image-[arch].conf if exists
|
|
|
|
if [ -r ./onie-image-*.conf ]; then
|
|
|
|
. ./onie-image-*.conf
|
2019-07-26 00:06:41 -05:00
|
|
|
fi
|
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
echo "ONIE Installer: platform: $platform"
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# Make sure run as root or under 'sudo'
|
|
|
|
if [ $(id -u) -ne 0 ]
|
|
|
|
then echo "Please run as root"
|
|
|
|
exit 1
|
|
|
|
fi
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
# get running machine from conf file
|
2020-01-23 18:50:17 -06:00
|
|
|
if [ -r /etc/machine.conf ]; then
|
2022-07-12 17:00:57 -05:00
|
|
|
read_conf_file "/etc/machine.conf"
|
2020-01-23 18:50:17 -06:00
|
|
|
elif [ -r /host/machine.conf ]; then
|
2022-07-12 17:00:57 -05:00
|
|
|
read_conf_file "/host/machine.conf"
|
2020-01-23 18:50:17 -06:00
|
|
|
elif [ "$install_env" != "build" ]; then
|
|
|
|
echo "cannot find machine.conf"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
echo "onie_platform: $onie_platform"
|
|
|
|
|
|
|
|
# Get platform specific linux kernel command line arguments
|
|
|
|
ONIE_PLATFORM_EXTRA_CMDLINE_LINUX=""
|
|
|
|
|
2023-09-25 18:39:12 -05:00
|
|
|
# Start with build time value, set either using env variable
|
|
|
|
# or from onie-image.conf. onie-mk-demo.sh will string replace
|
|
|
|
# below value to env value. Platform specific installer.conf
|
|
|
|
# will override this value if necessary by reading $onie_platform
|
|
|
|
# after this.
|
|
|
|
ONIE_IMAGE_PART_SIZE="%%ONIE_IMAGE_PART_SIZE%%"
|
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# Default var/log device size in MB
|
|
|
|
VAR_LOG_SIZE=4096
|
|
|
|
|
|
|
|
[ -r platforms/$onie_platform ] && . platforms/$onie_platform
|
|
|
|
|
2021-10-24 21:12:17 -05:00
|
|
|
# Verify image platform is inside devices list
|
|
|
|
if [ "$install_env" = "onie" ]; then
|
|
|
|
if ! grep -Fxq "$onie_platform" platforms_asic; then
|
|
|
|
echo "The image you're trying to install is of a different ASIC type as the running platform's ASIC"
|
|
|
|
while true; do
|
|
|
|
read -r -p "Do you still wish to install this image? [y/n]: " input
|
|
|
|
case $input in
|
|
|
|
[Yy])
|
|
|
|
echo "Force installing..."
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
[Nn])
|
|
|
|
echo "Exited installation!"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Error: Invalid input"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
fi
|
2020-01-23 18:50:17 -06:00
|
|
|
|
|
|
|
# If running in ONIE
|
|
|
|
if [ "$install_env" = "onie" ]; then
|
|
|
|
# The onie bin tool prefix
|
|
|
|
onie_bin=
|
|
|
|
# The persistent ONIE directory location
|
|
|
|
onie_root_dir=/mnt/onie-boot/onie
|
|
|
|
# The onie file system root
|
|
|
|
onie_initrd_tmp=/
|
|
|
|
fi
|
|
|
|
|
2024-02-22 10:04:52 -06:00
|
|
|
arch="%%ARCH%%"
|
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# The build system prepares this script by replacing %%DEMO-TYPE%%
|
|
|
|
# with "OS" or "DIAG".
|
|
|
|
demo_type="%%DEMO_TYPE%%"
|
|
|
|
|
2023-09-25 18:39:12 -05:00
|
|
|
# take final partition size after platform installer.conf override
|
|
|
|
demo_part_size=$ONIE_IMAGE_PART_SIZE
|
2023-03-23 08:51:47 -05:00
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# The build system prepares this script by replacing %%IMAGE_VERSION%%
|
|
|
|
# with git revision hash as a version identifier
|
|
|
|
image_version="%%IMAGE_VERSION%%"
|
|
|
|
timestamp="$(date -u +%Y%m%d)"
|
|
|
|
|
|
|
|
demo_volume_label="SONiC-${demo_type}"
|
|
|
|
demo_volume_revision_label="SONiC-${demo_type}-${image_version}"
|
2019-07-26 00:06:41 -05:00
|
|
|
|
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
. ./default_platform.conf
|
|
|
|
|
|
|
|
if [ -r ./platform.conf ]; then
|
|
|
|
. ./platform.conf
|
|
|
|
fi
|
|
|
|
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
image_dir="image-$image_version"
|
|
|
|
|
|
|
|
if [ "$install_env" = "onie" ]; then
|
|
|
|
# Create/format the flash
|
|
|
|
create_partition
|
|
|
|
mount_partition
|
|
|
|
elif [ "$install_env" = "sonic" ]; then
|
|
|
|
demo_mnt="/host"
|
2021-04-12 12:48:44 -05:00
|
|
|
# Get current SONiC image (grub/aboot/uboot)
|
|
|
|
eval running_sonic_revision="$(cat /proc/cmdline | sed -n 's/^.*loop=\/*image-\(\S\+\)\/.*$/\1/p')"
|
|
|
|
# Verify SONiC image exists
|
|
|
|
if [ ! -d "$demo_mnt/image-$running_sonic_revision" ]; then
|
|
|
|
echo "ERROR: SONiC installation is corrupted: path $demo_mnt/image-$running_sonic_revision doesn't exist"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-01-23 18:50:17 -06:00
|
|
|
# Prevent installing existing SONiC if it is running
|
|
|
|
if [ "$image_dir" = "image-$running_sonic_revision" ]; then
|
|
|
|
echo "Not installing SONiC version $running_sonic_revision, as current running SONiC has the same version"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
# Remove extra SONiC images if any
|
|
|
|
for f in $demo_mnt/image-* ; do
|
|
|
|
if [ -d $f ] && [ "$f" != "$demo_mnt/image-$running_sonic_revision" ] && [ "$f" != "$demo_mnt/$image_dir" ]; then
|
|
|
|
echo "Removing old SONiC installation $f"
|
|
|
|
rm -rf $f
|
|
|
|
fi
|
|
|
|
done
|
2022-07-12 17:00:57 -05:00
|
|
|
else
|
|
|
|
demo_mnt="build_raw_image_mnt"
|
|
|
|
demo_dev=$cur_wd/"%%OUTPUT_RAW_IMAGE%%"
|
|
|
|
|
|
|
|
mkfs.ext4 -L $demo_volume_label $demo_dev
|
|
|
|
|
|
|
|
echo "Mounting $demo_dev on $demo_mnt..."
|
|
|
|
mkdir $demo_mnt
|
|
|
|
mount -t auto -o loop $demo_dev $demo_mnt
|
2020-01-23 18:50:17 -06:00
|
|
|
fi
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2022-07-12 17:00:57 -05:00
|
|
|
echo "Installing SONiC to $demo_mnt/$image_dir"
|
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# Create target directory or clean it up if exists
|
|
|
|
if [ -d $demo_mnt/$image_dir ]; then
|
|
|
|
echo "Directory $demo_mnt/$image_dir/ already exists. Cleaning up..."
|
|
|
|
rm -rf $demo_mnt/$image_dir/*
|
|
|
|
else
|
|
|
|
mkdir $demo_mnt/$image_dir || {
|
|
|
|
echo "Error: Unable to create SONiC directory"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
fi
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# Decompress the file for the file system directly to the partition
|
|
|
|
if [ x"$docker_inram" = x"on" ]; then
|
|
|
|
# when disk is small, keep dockerfs.tar.gz in disk, expand it into ramfs during initrd
|
2023-12-04 16:41:52 -06:00
|
|
|
unzip -o $INSTALLER_PAYLOAD -x "platform.tar.gz" -d $demo_mnt/$image_dir
|
2020-01-23 18:50:17 -06:00
|
|
|
else
|
2023-12-04 16:41:52 -06:00
|
|
|
unzip -o $INSTALLER_PAYLOAD -x "$FILESYSTEM_DOCKERFS" "platform.tar.gz" -d $demo_mnt/$image_dir
|
2020-01-23 18:50:17 -06:00
|
|
|
|
|
|
|
if [ "$install_env" = "onie" ]; then
|
|
|
|
TAR_EXTRA_OPTION="--numeric-owner"
|
|
|
|
else
|
|
|
|
TAR_EXTRA_OPTION="--numeric-owner --warning=no-timestamp"
|
|
|
|
fi
|
|
|
|
mkdir -p $demo_mnt/$image_dir/$DOCKERFS_DIR
|
2023-12-04 16:41:52 -06:00
|
|
|
unzip -op $INSTALLER_PAYLOAD "$FILESYSTEM_DOCKERFS" | tar xz $TAR_EXTRA_OPTION -f - -C $demo_mnt/$image_dir/$DOCKERFS_DIR
|
2020-01-23 18:50:17 -06:00
|
|
|
fi
|
2019-07-26 00:06:41 -05:00
|
|
|
|
[Build]: Support to use symbol links for lazy installation targets to reduce the image size (#10923)
Why I did it
Support to use symbol links in platform folder to reduce the image size.
The current solution is to copy each lazy installation targets (xxx.deb files) to each of the folders in the platform folder. The size will keep growing when more and more packages added in the platform folder. For cisco-8000 as an example, the size will be up to 2G, while most of them are duplicate packages in the platform folder.
How I did it
Create a new folder in platform/common, all the deb packages are copied to the folder, any other folders where use the packages are the symbol links to the common folder.
Why platform.tar?
We have implemented a patch for it, see #10775, but the problem is the the onie use really old unzip version, cannot support the symbol links.
The current solution is similar to the PR 10775, but make the platform folder into a tar package, which can be supported by onie. During the installation, the package.tar will be extracted to the original folder and removed.
2022-06-21 00:03:55 -05:00
|
|
|
mkdir -p $demo_mnt/$image_dir/platform
|
2023-12-04 16:41:52 -06:00
|
|
|
unzip -op $INSTALLER_PAYLOAD "platform.tar.gz" | tar xz $TAR_EXTRA_OPTION -f - -C $demo_mnt/$image_dir/platform
|
2019-07-26 00:06:41 -05:00
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
if [ "$install_env" = "onie" ]; then
|
|
|
|
# Store machine description in target file system
|
|
|
|
if [ -f /etc/machine-build.conf ]; then
|
|
|
|
# onie_ variable are generate at runtime.
|
|
|
|
# they are no longer hardcoded in /etc/machine.conf
|
|
|
|
# also remove single quotes around the value
|
|
|
|
set | grep ^onie | sed -e "s/='/=/" -e "s/'$//" > $demo_mnt/machine.conf
|
|
|
|
else
|
|
|
|
cp /etc/machine.conf $demo_mnt
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-08-01 20:52:23 -05:00
|
|
|
echo "ONIE_IMAGE_PART_SIZE=$demo_part_size"
|
|
|
|
|
2022-06-02 02:35:17 -05:00
|
|
|
extra_cmdline_linux=%%EXTRA_CMDLINE_LINUX%%
|
2023-07-28 03:54:02 -05:00
|
|
|
# Inherit the FIPS option, so not necessary to do another reboot after upgraded
|
|
|
|
if grep -q '\bsonic_fips=1\b' /proc/cmdline && echo " $extra_cmdline_linux" | grep -qv '\bsonic_fips=.\b'; then
|
|
|
|
extra_cmdline_linux="$extra_cmdline_linux sonic_fips=1"
|
|
|
|
fi
|
|
|
|
|
2022-06-02 02:35:17 -05:00
|
|
|
echo "EXTRA_CMDLINE_LINUX=$extra_cmdline_linux"
|
|
|
|
|
2020-01-23 18:50:17 -06:00
|
|
|
# Update Bootloader Menu with installed image
|
|
|
|
bootloader_menu_config
|
2019-07-26 00:06:41 -05:00
|
|
|
|
|
|
|
# Set NOS mode if available. For manufacturing diag installers, you
|
|
|
|
# probably want to skip this step so that the system remains in ONIE
|
|
|
|
# "installer" mode for installing a true NOS later.
|
|
|
|
if [ -x /bin/onie-nos-mode ] ; then
|
|
|
|
/bin/onie-nos-mode -s
|
|
|
|
fi
|