71a353c656
Why I did it Removing incorrect check in plt setup for fw_env config: This check was added before to compare 2 different types of disk. Now the check is redundant and check is not required as transition is complete. 2)Removing legacy_volume_label in create_partition: legacy_volume_label is not used in armhf install files. With legacy_volume_label initialized to NULL, current code will always return true for check, if demo_part exits. How I did it Change is about removing the redundant/incorrect code explained above. How to verify it uboot fw_printenv and fw_setenv is tested onie-nos-install has be verified. Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>
33 lines
674 B
Bash
Executable File
33 lines
674 B
Bash
Executable File
#!/bin/bash
|
|
|
|
fw_uboot_env_cfg()
|
|
{
|
|
echo "Setting up U-Boot environment..."
|
|
|
|
MACH_FILE="/host/machine.conf"
|
|
PLATFORM=`sed -n 's/onie_platform=\(.*\)/\1/p' $MACH_FILE`
|
|
|
|
if [ "$PLATFORM" = "armhf-nokia_ixs7215_52x-r0" ]; then
|
|
# Ixs7215 / IPD6448M board Uboot ENV offset
|
|
FW_ENV_DEFAULT='/dev/mtd0 0x00100000 0x10000 0x10000'
|
|
else
|
|
FW_ENV_DEFAULT='/dev/mtd0 0x00500000 0x80000 0x100000 8'
|
|
fi
|
|
|
|
echo "Using pre-configured uboot env"
|
|
echo $FW_ENV_DEFAULT > /etc/fw_env.config
|
|
|
|
}
|
|
|
|
|
|
main()
|
|
{
|
|
fw_uboot_env_cfg
|
|
echo "Nokia-IXS7215: /dev/mtd0 FW_ENV_DEFAULT"
|
|
|
|
python /etc/entropy.py &
|
|
/bin/sh /etc/inband_mgmt.sh
|
|
}
|
|
|
|
main $@
|