Home
last modified time | relevance | path

Searched refs:modules (Results 1 – 25 of 591) sorted by relevance

12345678910>>...24

/linux-6.12.1/drivers/gpu/drm/amd/display/
DMakefile47 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/inc
48 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/freesync
49 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/color
50 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/info_packet
51 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/power
54 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/hdcp
59 DAL_LIBS = amdgpu_dm dc modules/freesync modules/color modules/info_packet modules/power dmub/src
61 DAL_LIBS += modules/hdcp
/linux-6.12.1/scripts/
DMakefile.modinst19 install-$(CONFIG_MODULES) += $(addprefix $(MODLIB)/, build modules.order)
27 $(MODLIB)/modules.order: modules.order FORCE
34 install-y += $(addprefix $(MODLIB)/, modules.builtin modules.builtin.modinfo)
36 install-$(CONFIG_BUILTIN_MODULE_RANGES) += $(MODLIB)/modules.builtin.ranges
38 $(addprefix $(MODLIB)/, modules.builtin modules.builtin.modinfo modules.builtin.ranges): $(MODLIB)/…
43 modules := $(call read-file, $(MODORDER))
62 modules := $(patsubst $(extmod_prefix)%.o, $(dst)/%.ko$(suffix-y), $(modules))
63 install-$(CONFIG_MODULES) += $(modules)
DMakefile.vmlinux_o4 __default: vmlinux.o modules.builtin.modinfo modules.builtin
74 targets += modules.builtin.modinfo
75 modules.builtin.modinfo: vmlinux.o FORCE
89 targets += modules.builtin
90 modules.builtin: modules.builtin.modinfo FORCE
DMakefile.vmlinux39 __default: modules.builtin.ranges
44 targets += modules.builtin.ranges
45 modules.builtin.ranges: $(srctree)/scripts/generate_builtin_ranges.awk \
46 modules.builtin vmlinux.map vmlinux.o.map FORCE
DMakefile.modfinal16 modules := $(call read-file, $(MODORDER))
18 __modfinal: $(modules:%.o=%.ko)
66 targets += $(modules:%.o=%.ko) $(modules:%.o=%.mod.o) $(extmod_prefix).module-common.o
DMakefile.build59 subdir-modorder := $(sort $(filter %/modules.order, $(obj-m)))
71 targets-for-modules := $(foreach x, o mod, \
75 targets-for-modules += $(obj)/modules.order
78 targets += $(targets-for-builtin) $(targets-for-modules)
207 …2, $(modname-multi)),$(warning $(kbuild-file): $*.o is added to multiple modules: $(modname-multi)…
381 $(subdir-modorder): $(obj)/%/modules.order: $(obj)/% ;
404 $(obj)/modules.order: $(obj-m) FORCE
460 $(if $(KBUILD_MODULES), $(targets-for-modules)) \
480 need-modorder=$(if $(filter $@/modules.order, $(subdir-modorder)),1) \
/linux-6.12.1/kernel/module/
DKconfig4 modules
7 Kernel modules are small pieces of compiled code which can
11 many parts of the kernel can be built as modules (by
18 modules_install" to put the modules under /lib/modules/
34 modules. You don't need these options on production systems.
44 For example, size of all modules, average size, text size, a list
45 of failed modules and the size for each of those. For failed
46 modules we keep track of modules which failed due to either the
52 with loading modules when it shouldn't or if you want to help
54 You might want to do this because failed modules tend to use
[all …]
/linux-6.12.1/Documentation/admin-guide/
Dmodule-signing.rst10 .. - Manually signing modules.
11 .. - Signed modules and stripping.
12 .. - Loading signed modules.
13 .. - Non-valid signatures and unsigned modules.
21 The kernel module signing facility cryptographically signs modules during
23 allows increased kernel security by disallowing the loading of unsigned modules
24 or modules signed with an invalid key. Module signing increases security by
49 (1) :menuselection:`Require modules to be validly signed`
55 If this is off (ie. "permissive"), then modules for which the key is not
56 available and modules that are unsigned are permitted, but the kernel will
[all …]
/linux-6.12.1/scripts/package/
Dkernel.spec41 Summary: Development package for building kernel modules to match the %{version} kernel
45 This package provides kernel headers and makefiles sufficient to build modules
58 mkdir -p %{buildroot}/lib/modules/%{KERNELRELEASE}
59 cp $(%{make} %{makeflags} -s image_name) %{buildroot}/lib/modules/%{KERNELRELEASE}/vmlinuz
63 cp System.map %{buildroot}/lib/modules/%{KERNELRELEASE}
64 cp .config %{buildroot}/lib/modules/%{KERNELRELEASE}/config
66 %{make} %{makeflags} INSTALL_DTBS_PATH=%{buildroot}/lib/modules/%{KERNELRELEASE}/dtb dtbs_install
68 ln -fns /usr/src/kernels/%{KERNELRELEASE} %{buildroot}/lib/modules/%{KERNELRELEASE}/build
97 /usr/bin/kernel-install add %{KERNELRELEASE} /lib/modules/%{KERNELRELEASE}/vmlinuz
130 /lib/modules/%{KERNELRELEASE}/build
Dbuilddeb108 done < modules.order
113 mkdir -p ${pdir}/usr/lib/debug/lib/modules/${KERNELRELEASE}/
114 cp vmlinux ${pdir}/usr/lib/debug/lib/modules/${KERNELRELEASE}/
117 ln -s ../lib/modules/${KERNELRELEASE}/vmlinux ${pdir}/usr/lib/debug/boot/vmlinux-${KERNELRELEASE}
119 ln -s lib/modules/${KERNELRELEASE}/vmlinux ${pdir}/usr/lib/debug/vmlinux-${KERNELRELEASE}
128 mkdir -p $pdir/lib/modules/$version/
129 ln -s /usr/src/linux-headers-$version $pdir/lib/modules/$version/build
/linux-6.12.1/Documentation/kbuild/
Dkbuild.rst9 modules.order
11 This file records the order in which modules appear in Makefiles. This
13 multiple modules.
15 modules.builtin
17 This file lists all modules that are built into the kernel. This is used
20 modules.builtin.modinfo
22 This file contains modinfo from all modules that are built into the kernel.
25 modules.builtin.ranges
27 This file contains address offset ranges (per ELF section) for all modules
42 Additional options to the assembler (for built-in and modules).
[all …]
Dmodules.rst12 to pick up the right flags to the compiler. Functionality for building modules
14 either is similar, and all modules are initially developed and built
18 in building out-of-tree (or "external") modules. The author of an
28 To build external modules, you must have a prebuilt kernel available
30 Also, the kernel must have been built with modules enabled. If you are
37 building external modules.
55 $ make -C /lib/modules/`uname -r`/build M=$PWD
60 $ make -C /lib/modules/`uname -r`/build M=$PWD modules_install
98 modules
99 The default target for external modules. It has the
[all …]
/linux-6.12.1/Documentation/admin-guide/LSM/
Dindex.rst8 loadable kernel modules. Instead, they are selectable at build-time via
20 The Linux capabilities modules will always be included. This may be
21 followed by any number of "minor" modules and at most one "major" module.
25 A list of the active security modules can be found by reading
29 be first, followed by any "minor" modules (e.g. Yama) and then
32 Process attributes associated with "major" security modules should
37 in ``/proc/.../attr`` remain as legacy interfaces for modules that provide
/linux-6.12.1/tools/testing/selftests/livepatch/
DREADME7 The test suite loads and unloads several test kernel modules to verify
26 The command above will compile all test modules and test programs, making them
32 Test kernel modules are built before running the livepatch selftests. The
33 modules are located under test_modules directory, and are built as out-of-tree
34 modules. This is specially useful since the same sources can be built and
36 compatible. The modules will be loaded by the test scripts using insmod.
/linux-6.12.1/
D.gitignore56 modules.order
62 /modules-only.symvers
71 /modules.builtin
72 /modules.builtin.modinfo
73 /modules.builtin.ranges
74 /modules.nsdeps
/linux-6.12.1/tools/testing/crypto/chacha20-s390/
DMakefile10 make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) modules
12 make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) clean
/linux-6.12.1/samples/
DKconfig14 tristate "Build trace_events examples -- loadable modules only"
20 tristate "Build custom trace event example -- loadable modules only"
67 different kobject sample modules showing how to use kobjects,
73 tristate "Build kprobes examples -- loadable modules only"
76 This build several kprobes example modules.
79 tristate "Build kretprobes example -- loadable modules only"
87 This builds kernel hardware breakpoint example modules.
90 tristate "Build fprobe examples -- loadable modules only"
97 tristate "Build kfifo examples -- loadable modules only"
101 different kfifo sample modules showing how to use the
[all …]
/linux-6.12.1/Documentation/i2c/busses/
Di2c-taos-evm.rst7 This is a driver for the evaluation modules for TAOS I2C/SMBus chips.
8 The modules include an SMBus master with limited capabilities, which can
9 be controlled over the serial port. Virtually all evaluation modules
38 modules:
48 practice, as these modules are meant for evaluation and testing only.
/linux-6.12.1/tools/power/cpupower/debug/kernel/
DMakefile4 KDIR := /lib/modules/$(shell uname -r)/build
5 KMISC := /lib/modules/$(shell uname -r)/cpufrequtils/
16 - rm -rf Module.symvers modules.order
/linux-6.12.1/tools/testing/selftests/livepatch/test_modules/
DMakefile2 KDIR ?= /lib/modules/$(shell uname -r)/build
17 modules: target
19 $(Q)$(MAKE) -C $(KDIR) modules KBUILD_EXTMOD=$(TESTMODS_DIR)
/linux-6.12.1/Documentation/
Ddontdiff180 modules-only.symvers
181 modules.builtin
182 modules.builtin.modinfo
183 modules.builtin.ranges
184 modules.nsdeps
185 modules.order
/linux-6.12.1/Documentation/security/
Dlsm.rst33 framework could then be used by loadable kernel modules to implement any
50 security modules. In particular, the LSM framework is primarily focused
51 on supporting access control modules, although future development is
54 the infrastructure to support security modules. The LSM framework is
63 It also adds functions for registering security modules.
65 of security modules that are active on the system.
69 the framework or by the individual security modules that use it.
87 ``include/linux/shm.h`` as appropriate) to allow the security modules to
95 32-bit integer. The security modules are required to map or otherwise
130 blobs, unlike other modules. The reasons are historical and are
/linux-6.12.1/sound/soc/sof/
Dipc4-loader.c91 fw_lib->modules = devm_kmalloc_array(sdev->dev, fw_header->num_module_entries, in sof_ipc4_fw_parse_ext_man()
93 if (!fw_lib->modules) in sof_ipc4_fw_parse_ext_man()
98 fw_module = fw_lib->modules; in sof_ipc4_fw_parse_ext_man()
226 fw_lib->modules[i].man4_module_entry.id |= (lib_id << SOF_IPC4_MOD_LIB_ID_SHIFT); in sof_ipc4_load_library_by_uuid()
261 devm_kfree(sdev->dev, fw_lib->modules); in sof_ipc4_load_library_by_uuid()
283 if (guid_equal(uuid, &fw_lib->modules[i].man4_module_entry.uuid)) in sof_ipc4_find_module_by_uuid()
284 return &fw_lib->modules[i]; in sof_ipc4_find_module_by_uuid()
307 if (guid_equal(uuid, &fw_lib->modules[i].man4_module_entry.uuid)) in sof_ipc4_find_module_by_uuid()
308 return &fw_lib->modules[i]; in sof_ipc4_find_module_by_uuid()
/linux-6.12.1/Documentation/userspace-api/
Dlsm.rst12 Linux security modules (LSM) provide a mechanism to implement
15 The various security modules may support any of these attributes:
20 This is supported by the SELinux, Smack and AppArmor security modules.
27 This is supported by the SELinux and AppArmor security modules.
43 This is supported by the SELinux and AppArmor security modules.
/linux-6.12.1/drivers/gpu/drm/ci/
Digt_runner.sh25 mv /install/modules/lib/modules/* /lib/modules/. || true

12345678910>>...24