From cd8948a6df5ce56e3f100ef7bc38691f8e3918d3 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 4 Nov 2020 09:33:16 +0100 Subject: [PATCH 1/2] tests/usbus_cdc_ecm: remove Kconfig file This is not longer needed since 250f6fdfa341ffcf0534b8adbec436d0bf4e3a57 moved the default PID and VID values to the System USB Kconfig. --- tests/usbus_cdc_ecm/Kconfig | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 tests/usbus_cdc_ecm/Kconfig diff --git a/tests/usbus_cdc_ecm/Kconfig b/tests/usbus_cdc_ecm/Kconfig deleted file mode 100644 index a31bf18547..0000000000 --- a/tests/usbus_cdc_ecm/Kconfig +++ /dev/null @@ -1,5 +0,0 @@ -config USB_VID - default 0x$(DEFAULT_VID) if KCONFIG_USB - -config USB_PID - default 0x$(DEFAULT_PID) if KCONFIG_USB From 924da3d0c3a2ac409d57b3d5b3b56da145951771 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 4 Nov 2020 09:35:35 +0100 Subject: [PATCH 2/2] examples/usbus_minimal/Makefile: remove unneeded SHOULD_RUN_KCONFIG This variable is not needed since 250f6fdfa341ffcf0534b8adbec436d0bf4e3a57 removed the Kconfig file for the application. --- examples/usbus_minimal/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/usbus_minimal/Makefile b/examples/usbus_minimal/Makefile index b9d5dfb4a6..86730d0634 100644 --- a/examples/usbus_minimal/Makefile +++ b/examples/usbus_minimal/Makefile @@ -22,7 +22,4 @@ USB_PID ?= $(USB_PID_TESTING) # Change this to 0 show compiler invocation lines by default: QUIET ?= 1 -# Do not run Kconfig by default -SHOULD_RUN_KCONFIG ?= - include $(RIOTBASE)/Makefile.include