Hi,
I am trying to update uboot and uboot enviorment variable during OTA update.
i am using jetson TX2 SDK 32.4.3.
steps i am following
- Put the device into recovery mode.
- Run below command to generate BUP:
$ sudo FAB=300 BOARDID=3489 FUSELEVEL=fuselevel_production ./build_l4t_bup.sh jetson-tx2-4GB mmcblk0p1
Payload will be saved in this directory of the source code “Tegra186_Linux_R32.4.3_aarch64/Linux_for_Tegra/bootloader/payloads_t18x/” - Copy bootloader payload to /opt/ota_package/
$cp Tegra186_Linux_R32.4.3_aarch64/Linux_for_Tegra/bootloader/payloads_t18x/bl_update_payload /opt/ota_package
Please make sure you are using the same image to generate BUP - Enable A/B redundancy
$ sudo nv_update_engine --enable-ab - Install Update Engine
$ sudo nv_update_engine --install
Device will reboot with updated bootloader
==========================
my bootloader is updating successfully but when i am adding new environment variable in my uboot and updating the bootloader i am not seeing newly added enviorment varaible her.
================
does this bl_update_payload update enviorment variable partition also or not.
Any help will be appreciated?