diff mbox

[U-Boot,1/2] Makefile: Generate U_BOOT_DMI_DATE for SMBIOS

Message ID 1444385862-31141-1-git-send-email-bmeng.cn@gmail.com
State Superseded
Delegated to: Simon Glass
Headers show

Commit Message

Bin Meng Oct. 9, 2015, 10:17 a.m. UTC
Add U_BOOT_DMI_DATE (format mm/dd/yyyy) generation to be used by
SMBIOS tables, as required by SMBIOS spec 3.0 [1]. See chapter 7.1,
BIOS information structure offset 08h for details.

[1] http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_3.0.0.pdf

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 Makefile | 2 ++
 1 file changed, 2 insertions(+)

Comments

Simon Glass Oct. 9, 2015, 1:01 p.m. UTC | #1
On 9 October 2015 at 11:17, Bin Meng <bmeng.cn@gmail.com> wrote:
> Add U_BOOT_DMI_DATE (format mm/dd/yyyy) generation to be used by
> SMBIOS tables, as required by SMBIOS spec 3.0 [1]. See chapter 7.1,
> BIOS information structure offset 08h for details.
>
> [1] http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_3.0.0.pdf
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  Makefile | 2 ++
>  1 file changed, 2 insertions(+)

Acked-by: Simon Glass <sjg@chromium.org>
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 8c0ca1b..3177e43 100644
--- a/Makefile
+++ b/Makefile
@@ -1278,6 +1278,7 @@  define filechk_timestamp.h
 			LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_DATE "%b %d %C%y"'; \
 			LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_TIME "%T"'; \
 			LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_TZ "%z"'; \
+			LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_DMI_DATE "%m/%d/%Y"'; \
 		else \
 			return 42; \
 		fi; \
@@ -1285,6 +1286,7 @@  define filechk_timestamp.h
 		LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"'; \
 		LC_ALL=C date +'#define U_BOOT_TIME "%T"'; \
 		LC_ALL=C date +'#define U_BOOT_TZ "%z"'; \
+		LC_ALL=C date +'#define U_BOOT_DMI_DATE "%m/%d/%Y"'; \
 	fi)
 endef