diff options
author | 2020-04-15 09:36:55 -0300 | |
---|---|---|
committer | 2020-04-15 22:49:00 +0200 | |
commit | a52ab35dcea3672a8c24d19b3908c0f3709813ca (patch) | |
tree | a49e79c947b67877ca6043d74c31f9ec4edf3000 /board/freescale | |
parent | 7ecd0e4edf9f42795ef70097a8f205b2aaa67a6d (diff) | |
download | buildroot-a52ab35dcea3672a8c24d19b3908c0f3709813ca.tar.gz buildroot-a52ab35dcea3672a8c24d19b3908c0f3709813ca.tar.bz2 |
board/freescale: specify the volume-label for FAT partition
Currently the volume-label for the vfat partition is a string with
the following pattern: 5934-861D.
Specify the volume-label as "boot" to make it easier to identify it.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Tested-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/common/imx/genimage.cfg.template | 1 | ||||
-rw-r--r-- | board/freescale/common/imx/genimage.cfg.template_imx8 | 1 | ||||
-rw-r--r-- | board/freescale/common/imx/genimage.cfg.template_spl | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/freescale/common/imx/genimage.cfg.template b/board/freescale/common/imx/genimage.cfg.template index 2a7036a7df..61b09bde9f 100644 --- a/board/freescale/common/imx/genimage.cfg.template +++ b/board/freescale/common/imx/genimage.cfg.template @@ -9,6 +9,7 @@ image boot.vfat { vfat { + label = "boot" files = { %FILES% } diff --git a/board/freescale/common/imx/genimage.cfg.template_imx8 b/board/freescale/common/imx/genimage.cfg.template_imx8 index bd5f6cdc73..84a812f986 100644 --- a/board/freescale/common/imx/genimage.cfg.template_imx8 +++ b/board/freescale/common/imx/genimage.cfg.template_imx8 @@ -9,6 +9,7 @@ image boot.vfat { vfat { + label = "boot" files = { %FILES% } diff --git a/board/freescale/common/imx/genimage.cfg.template_spl b/board/freescale/common/imx/genimage.cfg.template_spl index d2d810777b..3b0667c383 100644 --- a/board/freescale/common/imx/genimage.cfg.template_spl +++ b/board/freescale/common/imx/genimage.cfg.template_spl @@ -9,6 +9,7 @@ image boot.vfat { vfat { + label = "boot" files = { %FILES% } |