diff options
author | Adriana Kobylak <anoo@us.ibm.com> | 2017-08-21 11:00:56 -0500 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2017-08-24 02:42:25 +0000 |
commit | 4c2576ab9e4e85e71419137c1a00bdc2ea1337cf (patch) | |
tree | 1db1e1af017bf3cb049ce1fc39180229bf31072b /meta-phosphor/classes | |
parent | b0396780f9cc141d2fc4613cbfcd4ca17d2a1db1 (diff) | |
download | talos-openbmc-4c2576ab9e4e85e71419137c1a00bdc2ea1337cf.tar.gz talos-openbmc-4c2576ab9e4e85e71419137c1a00bdc2ea1337cf.zip |
BMC: Make volume names consistent
Name the BMC volume names consistently in the build process and
applications to be <name>-<id> for readability. For names, use
rofs and rwfs instead of ro and rw.
Change-Id: I860f740fb7d0292e4ee09493730db1d1f67c2ae5
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
Diffstat (limited to 'meta-phosphor/classes')
-rw-r--r-- | meta-phosphor/classes/image_types_phosphor.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-phosphor/classes/image_types_phosphor.bbclass b/meta-phosphor/classes/image_types_phosphor.bbclass index 21febe73d..8d19c80f5 100644 --- a/meta-phosphor/classes/image_types_phosphor.bbclass +++ b/meta-phosphor/classes/image_types_phosphor.bbclass @@ -145,10 +145,10 @@ do_generate_ubi() { rm -f $cfg ubi-img # Construct the ubinize config file - add_volume $cfg 0 static kernel0 \ + add_volume $cfg 0 static kernel-0 \ ${DEPLOY_DIR_IMAGE}/${FLASH_KERNEL_IMAGE} - add_volume $cfg 1 static rofs0 \ + add_volume $cfg 1 static rofs-0 \ ${IMGDEPLOYDIR}/${IMAGE_LINK_NAME}.${FLASH_UBI_BASETYPE} add_volume $cfg 2 dynamic rwfs rwfs.${FLASH_UBI_OVERLAY_BASETYPE} ${FLASH_UBI_RWFS_TXT_SIZE} |