From 8419eab90284a73a45d84b6bed98542cd2273e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Ko=C5=9Bciuszkiewicz?= Date: Thu, 17 Jul 2025 14:47:59 +0200 Subject: [PATCH] Add docker-sonic-vpp target to the platform rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The target is mentioned by build instructions in the README.md, but not enabled by default. Signed-off-by: Krzysztof Kościuszkiewicz --- rules.dep | 1 + rules.mk | 1 + 2 files changed, 2 insertions(+) diff --git a/rules.dep b/rules.dep index 4083c94..43111d9 100644 --- a/rules.dep +++ b/rules.dep @@ -23,3 +23,4 @@ include $(PLATFORM_RULES)/one-image.dep include $(PLATFORM_RULES)/onie.dep include $(PLATFORM_RULES)/kvm-image.dep include $(PLATFORM_RULES)/raw-image.dep +include $(PLATFORM_RULES)/docker-sonic-vpp.dep diff --git a/rules.mk b/rules.mk index 015b4ca..05788c5 100644 --- a/rules.mk +++ b/rules.mk @@ -25,5 +25,6 @@ include $(PLATFORM_RULES)/one-image.mk include $(PLATFORM_RULES)/onie.mk include $(PLATFORM_RULES)/kvm-image.mk include $(PLATFORM_RULES)/raw-image.mk +include $(PLATFORM_RULES)/docker-sonic-vpp.mk SONIC_ALL += $(SONIC_ONE_IMAGE) $(SONIC_KVM_IMAGE) $(DOCKER_SONIC_VPP) $(SONIC_RAW_IMAGE)