From d261abf511dacd8a6c1b807ca586712bd3172113 Mon Sep 17 00:00:00 2001 From: Narayan Reddy Date: Tue, 29 Nov 2022 16:04:36 +0530 Subject: [PATCH] osi: remove Makefile.sdk remove Makefile.sdk since no longer valid as AUTOSAR support is deprecated Bug 3871403 Change-Id: Id0f4d8c2d29611b7960cbc59e96d0303d6f50d13 Signed-off-by: Narayan Reddy Reviewed-on: https://git-master.nvidia.com/r/c/kernel/nvethernetrm/+/2818384 Reviewed-by: Nagarjuna Kristam Reviewed-by: Bhadram Varka Reviewed-by: Sachin Nikam GVS: Gerrit_Virtual_Submit --- osi/core/Makefile.sdk | 43 ------------------------------------------- osi/dma/Makefile.sdk | 38 -------------------------------------- 2 files changed, 81 deletions(-) delete mode 100644 osi/core/Makefile.sdk delete mode 100644 osi/dma/Makefile.sdk diff --git a/osi/core/Makefile.sdk b/osi/core/Makefile.sdk deleted file mode 100644 index 5ee8e6d..0000000 --- a/osi/core/Makefile.sdk +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2020-2022 NVIDIA CORPORATION. All Rights Reserved. -# -# NVIDIA CORPORATION and its licensors retain all intellectual property -# and proprietary rights in and to this software, related documentation -# and any modifications thereto. Any use, reproduction, disclosure or -# distribution of this software and related documentation without an express -# license agreement from NVIDIA CORPORATION is strictly prohibited. - -include $(PDK_TOP)/drive-t186ref-qnx/make/nvdefs.mk - -TARGETS = libnvethernetrm.so - -CFLAGS += -g -Wall $(NV_PLATFORM_OPT) $(NV_PLATFORM_CFLAGS) -CPPFLAGS = $(NV_PLATFORM_SDK_INC) $(NV_PLATFORM_CPPFLAGS) -I../../../include -I../dma -I../common/include -CPPFLAGS += -DNV_IS_SAFETY=$(NV_PLATFORM_SAFETY) -LDFLAGS := \ - $(NV_PLATFORM_SDK_LIB) \ - $(NV_PLATFORM_LDFLAGS) -LDFLAGS += -shared - -OBJS := eqos_core.o -OBJS += eqos_mmc.o -OBJS += osi_core.o -OBJS += vlan_filter.o -OBJS += frp.o -OBJS += mgbe_core.o -OBJS += xpcs.o -OBJS += mgbe_mmc.o -OBJS += osi_hal.o -OBJS += ivc_core.o -OBJS += ./../common/osi_common.o -OBJS += ./../common/eqos_common.o -OBJS += ./../common/mgbe_common.o -OBJS += core_common.o - -CFLAGS += -D_FILE_OFFSET_BITS=64 - -$(TARGETS): $(OBJS) - $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS) - $(STRIP) --strip-unneeded -R .comment -R .GCC.command.line $@ - -clean clobber: - rm -rf $(OBJS) $(TARGETS) diff --git a/osi/dma/Makefile.sdk b/osi/dma/Makefile.sdk deleted file mode 100644 index 6415826..0000000 --- a/osi/dma/Makefile.sdk +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright (c) 2020 NVIDIA CORPORATION. All Rights Reserved. -# -# NVIDIA CORPORATION and its licensors retain all intellectual property -# and proprietary rights in and to this software, related documentation -# and any modifications thereto. Any use, reproduction, disclosure or -# distribution of this software and related documentation without an express -# license agreement from NVIDIA CORPORATION is strictly prohibited. - -include $(PDK_TOP)/drive-t186ref-qnx/make/nvdefs.mk - -TARGETS = libnvethernetcl.so - -CFLAGS += -g -Wall $(NV_PLATFORM_OPT) $(NV_PLATFORM_CFLAGS) -CPPFLAGS = $(NV_PLATFORM_SDK_INC) $(NV_PLATFORM_CPPFLAGS) -I../../../include -I../core -I../common/include -CPPFLAGS += -DNV_IS_SAFETY=$(NV_PLATFORM_SAFETY) -LDFLAGS := \ - $(NV_PLATFORM_SDK_LIB) \ - $(NV_PLATFORM_LDFLAGS) -LDFLAGS += -shared - -OBJS := eqos_dma.o -OBJS += osi_dma.o -OBJS += osi_dma_txrx.o -OBJS += mgbe_dma.o -OBJS += eqos_desc.o -OBJS += mgbe_desc.o -OBJS += ./../common/osi_common.o -OBJS += ./../common/eqos_common.o -OBJS += ./../common/mgbe_common.o - -CFLAGS += -D_FILE_OFFSET_BITS=64 - -$(TARGETS): $(OBJS) - $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS) - $(STRIP) --strip-unneeded -R .comment -R .GCC.command.line $@ - -clean clobber: - rm -rf $(OBJS) $(TARGETS)