diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2019-11-03 04:10:12 +0000 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-11-03 04:25:40 +0000 |
commit | 66ebca7103052ba851be2261a4452787959de9c2 (patch) | |
tree | 2ac7b8c43dedb14a40c76f3e64747fdeec5937ba /include | |
parent | e4af39d56395738d86daa4babb379ab605b4d277 (diff) | |
download | upstream-66ebca7103052ba851be2261a4452787959de9c2.tar.gz upstream-66ebca7103052ba851be2261a4452787959de9c2.tar.bz2 upstream-66ebca7103052ba851be2261a4452787959de9c2.zip |
build: label kernel and rootfs ext4 volumes
UUID of ext4 volumes generated by make_ext4fs are determined by volume
label and it will all be 57f8f4bc-abf4-655f-bf67-946fc0f9f25b when label
is empty
Labeling them does not make them unique but tools like block command
from fstools have a better chance differentiating them
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk index 3e6c9adc66..940ae812ea 100644 --- a/include/image.mk +++ b/include/image.mk @@ -287,7 +287,7 @@ define Image/mkfs/ubifs endef define Image/mkfs/ext4 - $(STAGING_DIR_HOST)/bin/make_ext4fs \ + $(STAGING_DIR_HOST)/bin/make_ext4fs -L rootfs \ -l $(ROOTFS_PARTSIZE) -b $(CONFIG_TARGET_EXT4_BLOCKSIZE) \ $(if $(CONFIG_TARGET_EXT4_RESERVED_PCT),-m $(CONFIG_TARGET_EXT4_RESERVED_PCT)) \ $(if $(CONFIG_TARGET_EXT4_JOURNAL),,-J) \ |