| /Linux-v6.1/kernel/module/ |
| D | Kconfig | 2 menuconfig MODULES config 4 modules 6 Kernel modules are small pieces of compiled code which can 10 many parts of the kernel can be built as modules (by 17 modules_install" to put the modules under /lib/modules/ 23 if MODULES 29 Allow loading of modules without version information (ie. modprobe 37 modules (note that some modules may not be unloadable 58 list of linked (or loaded) modules e.g. on detection of a bad 65 Usually, you have to use modules compiled with your kernel. [all …]
|
| /Linux-v6.1/Documentation/admin-guide/ |
| D | module-signing.rst | 10 .. - 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-v6.1/Documentation/kbuild/ |
| D | modules.rst | 2 Building External Modules 10 === 2 How to Build External Modules 19 --- 3.4 Building Multiple Modules 28 --- 6.1 Symbols From the Kernel (vmlinux + modules) 29 --- 6.2 Symbols and External Modules 39 "kbuild" is the build system used by the Linux kernel. Modules must use 41 to pick up the right flags to "gcc." Functionality for building modules 43 either is similar, and all modules are initially developed and built 47 in building out-of-tree (or "external") modules. The author of an 54 2. How to Build External Modules [all …]
|
| D | kbuild.rst | 9 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. 37 Additional options to the assembler (for built-in and modules). 41 Additional assembler options for modules. 49 Additional options to the C compiler (for built-in and modules). [all …]
|
| /Linux-v6.1/samples/ |
| D | Kconfig | 14 tristate "Build trace_events examples -- loadable modules only" 20 tristate "Build custom trace event example -- loadable modules only" 60 different kobject sample modules showing how to use kobjects, 66 tristate "Build kprobes examples -- loadable modules only" 69 This build several kprobes example modules. 72 tristate "Build kretprobes example -- loadable modules only" 80 This builds kernel hardware breakpoint example modules. 83 tristate "Build fprobe examples -- loadable modules only" 90 tristate "Build kfifo examples -- loadable modules only" 94 different kfifo sample modules showing how to use the [all …]
|
| /Linux-v6.1/drivers/gpu/drm/amd/display/ |
| D | Makefile | 32 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/inc 33 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/freesync 34 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/color 35 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/info_packet 36 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/power 40 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/hdcp 46 DAL_LIBS = amdgpu_dm dc modules/freesync modules/color modules/info_packet modules/power dmub/src 49 DAL_LIBS += modules/hdcp
|
| /Linux-v6.1/scripts/package/ |
| D | builddeb | 90 mkdir -p $pdir/lib/modules/$version/ 91 ln -s /usr/src/linux-headers-$version $pdir/lib/modules/$version/build 142 …mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin" "$tmpdir/usr/share/doc/$packagen… 143 cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map" 161 rm -f "$tmpdir/lib/modules/$version/build" 162 rm -f "$tmpdir/lib/modules/$version/source" 164 mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/" 165 rmdir "$tmpdir/lib/modules/$version" 168 for module in $(find $tmpdir/lib/modules/ -name *.ko -printf '%P\n'); do 169 module=lib/modules/$module [all …]
|
| D | mkspec | 74 $S$M Summary: Development package for building kernel modules to match the $__KERNELRELEASE kernel 78 $S$M This package provides kernel headers and makefiles sufficient to build modules 100 $S$M rm -f %{buildroot}/lib/modules/$KERNELRELEASE/build 101 $S$M rm -f %{buildroot}/lib/modules/$KERNELRELEASE/source 104 $S$M cd %{buildroot}/lib/modules/$KERNELRELEASE 134 $M /lib/modules/$KERNELRELEASE 135 $M %exclude /lib/modules/$KERNELRELEASE/build 136 $M %exclude /lib/modules/$KERNELRELEASE/source 146 $S$M /lib/modules/$KERNELRELEASE/build 147 $S$M /lib/modules/$KERNELRELEASE/source
|
| /Linux-v6.1/Documentation/security/ |
| D | lsm.rst | 2 Linux Security Modules: General Security Hooks for Linux 33 framework could then be used by loadable kernel modules to implement any 37 The Linux Security Modules (LSM) project was started by WireX to develop 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 [all …]
|
| /Linux-v6.1/Documentation/admin-guide/LSM/ |
| D | index.rst | 8 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-v6.1/drivers/iio/common/ |
| D | Makefile | 3 # Makefile for the IIO common modules. 4 # Common modules contains modules, which can be shared among multiple 5 # IIO modules. For example if the trigger processing is common for 6 # multiple IIO modules then this can be moved to a common module
|
| /Linux-v6.1/Documentation/driver-api/media/drivers/ |
| D | pvrusb2.rst | 63 To build these modules essentially amounts to just running "Make", 115 modules should have any business using this header. All external 130 pvrusb2-i2c-chips-\*.c - These modules implement the glue logic to 131 tie together and configure various I2C modules as they attach to 136 V4L, where we might encounter other possibly "challenging" modules 137 from ivtv or older kernel snapshots (or even the support modules 141 compatible commands to the I2C modules. It is here where state 143 commands that are in turn send to the various I2C modules. 146 compatible commands to the I2C modules. It is here where state 148 commands that are in turn send to the various I2C modules. [all …]
|
| /Linux-v6.1/scripts/ |
| D | depmod.sh | 30 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 32 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 33 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 39 symlink="$INSTALL_MOD_PATH/lib/modules/99.98.$KERNELRELEASE"
|
| D | Makefile.modpost | 11 # d) modules.order, which lists all the modules 14 # 1) Find all modules listed in modules.order 32 # Step 4 is solely used to allow module versioning in external modules, 49 # 'make -i -k' ignores compile errors, and builds as many modules as possible. 85 output-symdump := $(if $(vmlinux.o-if-present), Module.symvers, modules-only.symvers) 91 # set src + obj - they may be used in the modules's Makefile 114 # Read out modules.order to pass in modpost. 120 echo >&2 " Modules may not have dependencies or modversions."; \
|
| D | Makefile.modinst | 3 # Installing modules 12 modules := $(sort $(shell cat $(MODORDER))) 29 modules := $(patsubst $(extmod_prefix)%, $(dst)/%$(suffix-y), $(modules)) 31 __modinst: $(modules) 42 # INSTALL_MOD_STRIP, if defined, will cause modules to be stripped after they 66 # Don't stop modules_install even if we can't sign external modules.
|
| D | Makefile.vmlinux_o | 4 __default: vmlinux.o modules.builtin.modinfo modules.builtin 70 targets += modules.builtin.modinfo 71 modules.builtin.modinfo: vmlinux.o FORCE 77 # The second line aids cases where multiple modules share the same object. 85 targets += modules.builtin 86 modules.builtin: modules.builtin.modinfo FORCE
|
| D | Makefile.modfinal | 15 # find all modules listed in modules.order 16 modules := $(sort $(shell cat $(MODORDER))) 18 __modfinal: $(modules) 60 $(modules): %.ko: %.o %.mod.o scripts/module.lds $(and $(CONFIG_DEBUG_INFO_BTF_MODULES),$(KBUILD_BU… 66 targets += $(modules) $(modules:.ko=.mod.o)
|
| /Linux-v6.1/lib/ |
| D | Kconfig | 134 modules require CRC-CCITT functions, but a module built outside 135 the kernel tree does. Such modules that use library CRC-CCITT 142 modules require CRC16 functions, but a module built outside 143 the kernel tree does. Such modules that use library CRC16 168 modules require CRC ITU-T V.41 functions, but a module built outside 169 the kernel tree does. Such modules that use library CRC ITU-T V.41 178 modules require CRC32/CRC32c functions, but a module built outside 179 the kernel tree does. Such modules that use library CRC32/CRC32c 242 modules require CRC64 functions, but a module built outside 243 the kernel tree does. Such modules that use library CRC64 [all …]
|
| /Linux-v6.1/scripts/gdb/linux/ |
| D | modules.py | 24 modules = utils.gdb_eval_or_none("modules") 25 if modules is None: 30 for module in lists.list_for_each_entry(modules, module_ptr_type, "list"): 44 $lx_module("MODULE"): Given the name MODULE, iterate over all loaded modules 63 """List currently loaded modules."""
|
| /Linux-v6.1/drivers/staging/media/deprecated/vpfe_capture/ |
| D | Kconfig | 11 with decoder modules such as TVP5146 over BT656 or 20 be two modules called vpfe_capture.ko and dm644x_ccdc.ko 31 with decoder modules such as TVP5146 over BT656 or 40 be two modules called vpfe_capture.ko and dm355_ccdc.ko 58 be two modules called vpfe_capture.ko and isif.ko
|
| /Linux-v6.1/Documentation/i2c/busses/ |
| D | i2c-taos-evm.rst | 7 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-v6.1/tools/virtio/ |
| D | Makefile | 18 #resulting modules in production! 19 OOT_KSRC=/lib/modules/$$(uname -r)/build 22 #Tweak the below to enable more modules 31 echo "UNSUPPORTED! Don't use the resulting modules in production!" 42 vhost_test/Module.symvers vhost_test/modules.order *.d
|
| /Linux-v6.1/drivers/mfd/ |
| D | janz-cmodio.c | 26 /* Maximum number of MODULbus modules on a CMOD-IO carrier board */ 31 static char *modules[CMODIO_MAX_MODULES] = { variable 35 module_param_array(modules, charp, &num_modules, S_IRUGO); 36 MODULE_PARM_DESC(modules, "MODULbus modules attached to the carrier board"); 126 name = modules[i]; in cmodio_probe_submodules() 135 /* print an error message if no modules were probed */ in cmodio_probe_submodules() 137 dev_err(&priv->pdev->dev, "no MODULbus modules specified, " in cmodio_probe_submodules() 138 "please set the ``modules'' kernel " in cmodio_probe_submodules()
|
| /Linux-v6.1/Documentation/devicetree/bindings/clock/ |
| D | imx7ulp-scg-clock.yaml | 7 title: Clock bindings for Freescale i.MX7ULP System Clock Generation (SCG) modules 14 Clock Generation (SCG) modules, Peripheral Clock Control (PCC) 15 modules, and Core Mode Controller (CMC)1 blocks 23 M4 clock management consists of SCG0, PCC0, PCC1, and CMC0 modules. 24 A7 clock management consists of SCG1, PCC2, PCC3, and CMC1 modules.
|
| /Linux-v6.1/ |
| D | .gitignore | 54 modules.order 60 /modules-only.symvers 69 /modules.builtin 70 /modules.builtin.modinfo 71 /modules.nsdeps
|