Skip to content
Snippets Groups Projects

Add automatic offline update pre condition

Merged Sudarshan CP requested to merge wip/offline_update_pre_condition into master
All threads resolved!
+ 15
0
@@ -69,6 +69,21 @@ with special name `static-update.bundle` and attach that device into
the target system. AUM will automatically detect the update file and try
to use it for the system upgrade.
{{% notice info %}}
Automatic offline updates will only be triggered when a file with the above
mentioned special name is found on a USB drive with a single partition.
Step to check and create partition table on Apertis SDK.
$lsblk
$sudo fdisk /dev/<drive in which usb is mounted e.g /dev/sdb>
Enter the below options :
p - list the partition
d - delete the partition
n - create the partition (create single partition with full size)
w - write the partition
Set FAT32 file system type:
$sudo mkfs -t vfat /dev/<drive in which usb drive is mounted e.g /dev/sdb1>
{{% /notice %}}
### Manual offline update
It is possible to update the system manually from local file with CLI,
Loading