From 1399f4798767710ff09fb8cd2633add31a198fa5 Mon Sep 17 00:00:00 2001 From: Victor Sun Date: Tue, 20 Aug 2019 15:22:20 +0800 Subject: [PATCH] doc: update partition desc for up2 board modify partition desc table of up2 board to make it consistent with launch uos script. Signed-off-by: Lei Lu Signed-off-by: Victor Sun --- doc/tutorials/partition_desc.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/tutorials/partition_desc.ini b/doc/tutorials/partition_desc.ini index fa09bbcb5..8e6bce9cf 100755 --- a/doc/tutorials/partition_desc.ini +++ b/doc/tutorials/partition_desc.ini @@ -6,9 +6,14 @@ [base] # The sequence matters, and the index starts from p1. # The fastboot ABL by default boots from the 2nd partition. -partitions = sos_rootfs sos_boot data_partition +partitions = data_partition sos_boot sos_rootfs device = auto +[partition.data_partition] +label = data_partition +len = 20000 +type = linux + [partition.sos_boot] label = sos_boot len = 100 @@ -16,11 +21,6 @@ type = linux [partition.sos_rootfs] label = sos_rootfs -len = 4000 -type = linux - -[partition.data_partition] -label = data_partition len = -1 type = linux # ------------------ END MIX-IN DEFINITIONS ------------------