2c0f4e57d7
Why I did it XGS saibcm-modules 8.4 is needed. #14471 Work item tracking Microsoft ADO (number only): 24917414 How I did it Copy files from xgs SDK 8.4 repo and modify makefiles to build the image. Upgrade version to 8.4.0.2 in saibcm-modules.mk. How to verify it Build a private image and run full qualification with it: https://elastictest.org/scheduler/testplan/650419cb71f60aa92c456a2b
49 lines
1.6 KiB
Makefile
49 lines
1.6 KiB
Makefile
# -*- Kbuild -*-
|
|
#
|
|
# Linux KNET Callback module.
|
|
#
|
|
# $Copyright: Copyright 2018-2022 Broadcom. All rights reserved.
|
|
# The term 'Broadcom' refers to Broadcom Inc. and/or its subsidiaries.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# version 2 as published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# A copy of the GNU General Public License version 2 (GPLv2) can
|
|
# be found in the LICENSES folder.$
|
|
#
|
|
|
|
ifeq ($(BUILD_PSAMPLE),1)
|
|
PSAMPLE_CFLAGS=-DPSAMPLE_SUPPORT
|
|
PSAMPLE_CB_OBJS=psample-cb.o
|
|
endif
|
|
|
|
ifneq ($(OUTPUT_DIR),)
|
|
INCLUDES := -I$(OUTPUT_DIR)/knet/generated/include -I$(OUTPUT_DIR)/knet/generated
|
|
endif
|
|
obj-m := linux_ngknetcb.o
|
|
|
|
ccflags-y := $(KNETCB_CPPFLAGS) $(LKM_CFLAGS) \
|
|
$(SDK_PMD_KFLAGS) \
|
|
-I$(SDK)/shr/include \
|
|
-I$(SDK)/bcmdrd/include \
|
|
-I$(SDK)/bcmltd/include \
|
|
-I$(SDK)/bcmlrd/include \
|
|
-I$(SDK)/bcmcnet/include \
|
|
-I$(SDK)/linux/include \
|
|
-I$(SDK)/linux/knetcb \
|
|
-I$(SDK)/linux/knet \
|
|
-I$(SDK)/linux/knet/generated/include \
|
|
-I$(SDK)/linux/knet/generated \
|
|
$(INCLUDES) \
|
|
$(PSAMPLE_CFLAGS) \
|
|
|
|
linux_ngknetcb-y := $(SDK_PMD_KOBJS) \
|
|
ngknetcb_main.o \
|
|
$(PSAMPLE_CB_OBJS)
|