~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/cxl/Kbuild

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/cxl/Kbuild (Version linux-6.12-rc7) and /tools/testing/cxl/Kbuild (Version linux-5.17.15)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 ldflags-y += --wrap=acpi_table_parse_cedt           2 ldflags-y += --wrap=acpi_table_parse_cedt
  3 ldflags-y += --wrap=is_acpi_device_node             3 ldflags-y += --wrap=is_acpi_device_node
  4 ldflags-y += --wrap=acpi_evaluate_integer           4 ldflags-y += --wrap=acpi_evaluate_integer
  5 ldflags-y += --wrap=acpi_pci_find_root              5 ldflags-y += --wrap=acpi_pci_find_root
                                                   >>   6 ldflags-y += --wrap=pci_walk_bus
  6 ldflags-y += --wrap=nvdimm_bus_register             7 ldflags-y += --wrap=nvdimm_bus_register
  7 ldflags-y += --wrap=devm_cxl_port_enumerate_dp << 
  8 ldflags-y += --wrap=devm_cxl_setup_hdm         << 
  9 ldflags-y += --wrap=devm_cxl_add_passthrough_d << 
 10 ldflags-y += --wrap=devm_cxl_enumerate_decoder << 
 11 ldflags-y += --wrap=cxl_await_media_ready      << 
 12 ldflags-y += --wrap=cxl_hdm_decode_init        << 
 13 ldflags-y += --wrap=cxl_dvsec_rr_decode        << 
 14 ldflags-y += --wrap=devm_cxl_add_rch_dport     << 
 15 ldflags-y += --wrap=cxl_rcd_component_reg_phys << 
 16 ldflags-y += --wrap=cxl_endpoint_parse_cdat    << 
 17 ldflags-y += --wrap=cxl_dport_init_ras_reporti << 
 18                                                     8 
 19 DRIVERS := ../../../drivers                         9 DRIVERS := ../../../drivers
 20 CXL_SRC := $(DRIVERS)/cxl                          10 CXL_SRC := $(DRIVERS)/cxl
 21 CXL_CORE_SRC := $(DRIVERS)/cxl/core                11 CXL_CORE_SRC := $(DRIVERS)/cxl/core
 22 ccflags-y := -I$(srctree)/drivers/cxl/             12 ccflags-y := -I$(srctree)/drivers/cxl/
 23 ccflags-y += -D__mock=__weak                       13 ccflags-y += -D__mock=__weak
 24 ccflags-y += -DTRACE_INCLUDE_PATH=$(CXL_CORE_S << 
 25                                                    14 
 26 obj-m += cxl_acpi.o                                15 obj-m += cxl_acpi.o
 27                                                    16 
 28 cxl_acpi-y := $(CXL_SRC)/acpi.o                    17 cxl_acpi-y := $(CXL_SRC)/acpi.o
 29 cxl_acpi-y += mock_acpi.o                          18 cxl_acpi-y += mock_acpi.o
 30 cxl_acpi-y += config_check.o                       19 cxl_acpi-y += config_check.o
 31 cxl_acpi-y += cxl_acpi_test.o                  << 
 32                                                    20 
 33 obj-m += cxl_pmem.o                                21 obj-m += cxl_pmem.o
 34                                                    22 
 35 cxl_pmem-y := $(CXL_SRC)/pmem.o                    23 cxl_pmem-y := $(CXL_SRC)/pmem.o
 36 cxl_pmem-y += $(CXL_SRC)/security.o            << 
 37 cxl_pmem-y += config_check.o                       24 cxl_pmem-y += config_check.o
 38 cxl_pmem-y += cxl_pmem_test.o                  << 
 39                                                << 
 40 obj-m += cxl_port.o                            << 
 41                                                << 
 42 cxl_port-y := $(CXL_SRC)/port.o                << 
 43 cxl_port-y += config_check.o                   << 
 44 cxl_port-y += cxl_port_test.o                  << 
 45                                                << 
 46                                                << 
 47 obj-m += cxl_mem.o                             << 
 48                                                << 
 49 cxl_mem-y := $(CXL_SRC)/mem.o                  << 
 50 cxl_mem-y += config_check.o                    << 
 51 cxl_mem-y += cxl_mem_test.o                    << 
 52                                                    25 
 53 obj-m += cxl_core.o                                26 obj-m += cxl_core.o
 54                                                    27 
 55 cxl_core-y := $(CXL_CORE_SRC)/port.o               28 cxl_core-y := $(CXL_CORE_SRC)/port.o
 56 cxl_core-y += $(CXL_CORE_SRC)/pmem.o               29 cxl_core-y += $(CXL_CORE_SRC)/pmem.o
 57 cxl_core-y += $(CXL_CORE_SRC)/regs.o               30 cxl_core-y += $(CXL_CORE_SRC)/regs.o
 58 cxl_core-y += $(CXL_CORE_SRC)/memdev.o             31 cxl_core-y += $(CXL_CORE_SRC)/memdev.o
 59 cxl_core-y += $(CXL_CORE_SRC)/mbox.o               32 cxl_core-y += $(CXL_CORE_SRC)/mbox.o
 60 cxl_core-y += $(CXL_CORE_SRC)/pci.o            << 
 61 cxl_core-y += $(CXL_CORE_SRC)/hdm.o            << 
 62 cxl_core-y += $(CXL_CORE_SRC)/pmu.o            << 
 63 cxl_core-y += $(CXL_CORE_SRC)/cdat.o           << 
 64 cxl_core-$(CONFIG_TRACING) += $(CXL_CORE_SRC)/ << 
 65 cxl_core-$(CONFIG_CXL_REGION) += $(CXL_CORE_SR << 
 66 cxl_core-y += config_check.o                       33 cxl_core-y += config_check.o
 67 cxl_core-y += cxl_core_test.o                  << 
 68 cxl_core-y += cxl_core_exports.o               << 
 69                                                    34 
 70 KBUILD_CFLAGS := $(filter-out -Wmissing-protot !!  35 cxl_core-y += mock_pmem.o
 71                                                    36 
 72 obj-m += test/                                     37 obj-m += test/
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php