cmdlist.c (831B)
1 /* 2 * 3 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 4 * 5 * Copyright 2007-2019 Broadcom Inc. All rights reserved. 6 * 7 * socdiag command list 8 * 9 * Since this version of the socdiag is run on top of the bcm-core 10 * module, we need to exclude certain features. We cannot do this 11 * through the makefile because we share the diag library with 12 * the bcm-diag-full module, which needs all features enabled. 13 */ 14 15 #ifdef INCLUDE_BCMX_DIAG 16 #undef INCLUDE_BCMX_DIAG 17 #endif 18 19 #ifdef INCLUDE_BCMX 20 #undef INCLUDE_BCMX 21 #endif 22 23 #ifdef INCLUDE_LIB_CPUDB 24 #undef INCLUDE_LIB_CPUDB 25 #endif 26 27 #ifdef INCLUDE_TEST 28 #undef INCLUDE_TEST 29 #endif 30 31 #ifndef NO_SAL_APPL 32 #ifndef NO_MEMTUNE 33 #define NO_MEMTUNE 34 #endif 35 #endif 36 37 #include "../../../../src/appl/diag/cmdlist.c"