5dbf512cda
Why I did it Cherry-pick #14601, for code conflict. Support to add SONiC OS Version in device info. It will be used to display the version info in the SONiC command "show version". The version is used to do the FIPS certification. We do not do the FIPS certification on a specific release, but on the SONiC OS Version. SONiC Software Version: SONiC.master-13812.218661-7d94c0c28 SONiC OS Version: 11 Distribution: Debian 11.6 Kernel: 5.10.0-18-2-amd64 Work item tracking Microsoft ADO (number only): 17894593 How I did it How to verify it
16 lines
415 B
Makefile
16 lines
415 B
Makefile
# sonic version yml file
|
|
|
|
sonic_version=$(SONIC_GET_VERSION)
|
|
sonic_asic_platform=$(CONFIGURED_PLATFORM)
|
|
sonic_os_version=$(SONIC_OS_VERSION)
|
|
|
|
export sonic_version
|
|
export sonic_asic_platform
|
|
export sonic_os_version
|
|
|
|
SONIC_VERSION = sonic_version.yml
|
|
$(SONIC_VERSION)_SRC_PATH = $(PLATFORM_PATH)/sonic-version
|
|
SONIC_MAKE_FILES += $(SONIC_VERSION)
|
|
|
|
SONIC_PHONY_TARGETS += $(addprefix $(FILES_PATH)/, $(SONIC_VERSION))
|