aboutsummaryrefslogtreecommitdiff
path: root/romfs
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2018-07-19 14:46:25 +0200
committerAlexey Kardashevskiy <aik@ozlabs.ru>2018-07-20 14:55:40 +1000
commit49482e06ea74652a70a8cd067b852cc142021c03 (patch)
treec480d90d4fe9e34b9991da1a04a2f5ad2ca3f1e8 /romfs
parentd4443f17c956e77df7bb23b2d19462faae9f4b23 (diff)
downloadSLOF-49482e06ea74652a70a8cd067b852cc142021c03.zip
SLOF-49482e06ea74652a70a8cd067b852cc142021c03.tar.gz
SLOF-49482e06ea74652a70a8cd067b852cc142021c03.tar.bz2
romfs/tools: Silence GCC 8.1 compiler warning with FLASHFS_MAGIC
GCC 8.1 introduce some new warnings which affect create_crc.c. One of them is: create_crc.c: In function ‘createHeaderImage’: create_crc.c:110:2: warning: ‘strncpy’ output truncated before terminating nul copying 8 bytes from a string of the same length [-Wstringop-truncation] strncpy(uHeader.stHeader.magic, FLASHFS_MAGIC, 8); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Initialize the header struct statically here instead to silence the warning. Suggested-by: Segher Boessenkool <segher@kernel.crashing.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'romfs')
-rw-r--r--romfs/tools/create_crc.c21
1 files changed, 6 insertions, 15 deletions
diff --git a/romfs/tools/create_crc.c b/romfs/tools/create_crc.c
index e354339..475b184 100644
--- a/romfs/tools/create_crc.c
+++ b/romfs/tools/create_crc.c
@@ -72,10 +72,12 @@ createHeaderImage(int notime)
char dastr[16] = { 0, };
unsigned long long da = 0;
- struct stH stHeader;
-
- /* initialize Header */
- memset(&stHeader, 0x00, sizeof(stHeader));
+ struct stH stHeader = {
+ .magic = FLASHFS_MAGIC,
+ .platform_name = FLASHFS_PLATFORM_MAGIC,
+ .platform_revision = FLASHFS_PLATFORM_REVISION,
+ .ui64FileEnd = -1,
+ };
/* read driver info */
if (NULL != (pcVersion = getenv("DRIVER_NAME"))) {
@@ -104,17 +106,6 @@ createHeaderImage(int notime)
}
memcpy(stHeader.date, &da, 8);
- /* write Magic value into data stream */
- strncpy(stHeader.magic, FLASHFS_MAGIC, 8);
- /* write platform name into data stream */
- strcpy(stHeader.platform_name, FLASHFS_PLATFORM_MAGIC);
- /* write platform revision into data stream */
- strcpy(stHeader.platform_revision, FLASHFS_PLATFORM_REVISION);
-
-
- /* fill end of file info (8 bytes of FF) into data stream */
- stHeader.ui64FileEnd = -1;
-
/* read address of next file and address of header date, both are 64 bit values */
ui64RomAddr = 0;
ui64DataAddr = 0;