Skip to content

Commit 245f337

Browse files
FengPan-Frankmssonicbld
authored andcommitted
Fix dialout build flag issue. (#17715)
### Why I did it Fix ENABLE_DIALOUT flag issue. ##### Work item tracking - Microsoft ADO **(number only)**: 21326000 #### How I did it Update Makefile.work and add debug string. #### How to verify it ![image](https://github.com/sonic-net/sonic-buildimage/assets/97083744/960d75d1-618c-4734-acb5-7a32a28c262b)
1 parent b53a890 commit 245f337

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Makefile.work

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
# * ENABLE_NATIVE_WRITE: Enable native write/config operations via the gNMI interface.
4141
# * Default: unset
4242
# * Values: y
43+
# * ENABLE_DIALOUT: Enable dialout client in telemetry.
44+
# * Default: unset
45+
# * Values: y
4346
# * SONIC_DPKG_CACHE_METHOD: Specifying method of obtaining the Debian packages from cache: none or cache
4447
# * SONIC_DPKG_CACHE_SOURCE: Debian package cache location when cache enabled for debian packages
4548
# * BUILD_LOG_TIMESTAMP: Set timestamp in the build log (simple/none)
@@ -542,6 +545,7 @@ SONIC_BUILD_INSTRUCTION := $(MAKE) \
542545
SONIC_INCLUDE_MUX=$(INCLUDE_MUX) \
543546
ENABLE_TRANSLIB_WRITE=$(ENABLE_TRANSLIB_WRITE) \
544547
ENABLE_NATIVE_WRITE=$(ENABLE_NATIVE_WRITE) \
548+
ENABLE_DIALOUT=$(ENABLE_DIALOUT) \
545549
EXTRA_DOCKER_TARGETS=$(EXTRA_DOCKER_TARGETS) \
546550
BUILD_LOG_TIMESTAMP=$(BUILD_LOG_TIMESTAMP) \
547551
SONIC_ENABLE_IMAGE_SIGNATURE=$(ENABLE_IMAGE_SIGNATURE) \

slave.mk

+1
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@ $(info "ENABLE_BOOTCHART : "$(ENABLE_BOOTCHART)")
431431
$(info "ENABLE_FIPS_FEATURE" : "$(ENABLE_FIPS_FEATURE)")
432432
$(info "ENABLE_TRANSLIB_WRITE" : "$(ENABLE_TRANSLIB_WRITE)")
433433
$(info "ENABLE_NATIVE_WRITE" : "$(ENABLE_NATIVE_WRITE)")
434+
$(info "ENABLE_DIALOUT" : "$(ENABLE_DIALOUT)")
434435
$(info "ENABLE_AUTO_TECH_SUPPORT" : "$(ENABLE_AUTO_TECH_SUPPORT)")
435436
$(info "PDDF_SUPPORT" : "$(PDDF_SUPPORT)")
436437
$(info "MULTIARCH_QEMU_ENVIRON" : "$(MULTIARCH_QEMU_ENVIRON)")

0 commit comments

Comments
 (0)