| /linux/drivers/gpu/drm/amd/display/ |
| H A D | Makefile | 48 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/inc 49 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/freesync 50 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/color 51 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/info_packet 52 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/power 55 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/hdcp 60 DAL_LIBS = amdgpu_dm dc modules/freesync modules/color modules/info_packet modules/power dmub/src 62 DAL_LIBS += modules/hdcp
|
| /linux/scripts/ |
| H A D | Makefile.modinst | 19 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, modules.order) 62 modules := $(patsubst %.o, $(dst)/%.ko$(suffix-y), $(modules)) 63 install-$(CONFIG_MODULES) += $(modules)
|
| H A D | Makefile.vmlinux | 121 targets += modules.builtin.modinfo 122 modules.builtin.modinfo: vmlinux.unstripped FORCE 128 __default: modules.builtin 138 targets += modules.builtin 139 modules.builtin: modules.builtin.modinfo FORCE 145 __default: modules.builtin.ranges 150 targets += modules.builtin.ranges 151 modules.builtin.ranges: $(srctree)/scripts/generate_builtin_ranges.awk \ 152 modules.builtin vmlinux.map vmlinux.o.map FORCE
|
| H A D | Makefile.modfinal | 13 # find all modules listed in modules.order 14 modules := $(call read-file, modules.order) 16 __modfinal: $(modules:%.o=%.ko) 65 targets += $(modules:%.o=%.ko) $(modules:%.o=%.mod.o) .module-common.o
|
| H A D | Makefile.build | 69 obj-m := $(patsubst %/,%/modules.order, $(filter %/, $(obj-y)) $(obj-m)) 139 subdir-modorder := $(sort $(filter %/modules.order, $(obj-m))) 151 targets-for-modules := $(foreach x, o mod, \ 155 targets-for-modules += $(obj)/modules.order 158 targets += $(targets-for-builtin) $(targets-for-modules) 284 …2, $(modname-multi)),$(warning $(kbuild-file): $*.o is added to multiple modules: $(modname-multi)… 463 $(subdir-modorder): $(obj)/%/modules.order: $(obj)/% ; 486 $(obj)/modules.order: $(obj-m) FORCE 550 need-modorder=$(if $(filter $@/modules.order, $(subdir-modorder)),1) \ 573 $(if $(KBUILD_MODULES), $(targets-for-modules)) \
|
| H A D | Makefile.modpost | 51 $(if $(KBUILD_NSDEPS),-d modules.nsdeps) \ 66 modpost-args += -T modules.order 67 modpost-deps += modules.order 106 output-symdump := modules-only.symvers
|
| /linux/kernel/module/ |
| H A D | Kconfig | 4 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/scripts/package/ |
| H A D | kernel.spec | 40 Summary: Development package for building kernel modules to match the %{version} kernel 44 This package provides kernel headers and makefiles sufficient to build modules 55 This package provides debug information for the kernel image and modules from the 82 find %{buildroot}/lib/modules/%{KERNELRELEASE} -name "*.ko" -type f \\\ 101 mkdir -p %{buildroot}/lib/modules/%{KERNELRELEASE} 102 cp $(%{make} %{makeflags} -s image_name) %{buildroot}/lib/modules/%{KERNELRELEASE}/vmlinuz 106 cp System.map %{buildroot}/lib/modules/%{KERNELRELEASE} 107 cp .config %{buildroot}/lib/modules/%{KERNELRELEASE}/config 109 %{make} %{makeflags} INSTALL_DTBS_PATH=%{buildroot}/lib/modules/%{KERNELRELEASE}/dtb dtbs_install 111 ln -fns /usr/src/kernels/%{KERNELRELEASE} %{buildroot}/lib/modules/%{KERNELRELEASE}/build [all …]
|
| H A D | builddeb | 123 done < modules.order 129 mkdir -p ${pdir}/usr/lib/debug/lib/modules/${KERNELRELEASE}/ 130 cp vmlinux ${pdir}/usr/lib/debug/lib/modules/${KERNELRELEASE}/ 133 ln -s ../lib/modules/${KERNELRELEASE}/vmlinux ${pdir}/usr/lib/debug/boot/vmlinux-${KERNELRELEASE} 135 ln -s lib/modules/${KERNELRELEASE}/vmlinux ${pdir}/usr/lib/debug/vmlinux-${KERNELRELEASE} 144 mkdir -p $pdir/lib/modules/$version/ 145 ln -s /usr/src/linux-headers-$version $pdir/lib/modules/$version/build
|
| H A D | PKGBUILD | 54 pkgdesc="The ${pkgdesc} kernel and modules" 56 local modulesdir="${pkgdir}/usr/lib/modules/${KERNELRELEASE}" 68 echo "Installing modules..." 82 pkgdesc="Headers and scripts for building modules for the ${pkgdesc} kernel" 84 local builddir="${pkgdir}/usr/lib/modules/${KERNELRELEASE}/build" 117 local builddir="${pkgdir}/usr/lib/modules/${KERNELRELEASE}/build"
|
| /linux/Documentation/admin-guide/ |
| H A 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 51 (1) :menuselection:`Require modules to be validly signed` 57 If this is off (ie. "permissive"), then modules for which the key is not 58 available and modules that are unsigned are permitted, but the kernel will [all …]
|
| /linux/Documentation/kbuild/ |
| H A 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. 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 …]
|
| H A D | modules.rst | 12 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 66 $ make -f /lib/modules/`uname -r`/build/Makefile M=$PWD 75 You can optionally pass MO= option if you want to build the modules in [all …]
|
| /linux/Documentation/admin-guide/LSM/ |
| H A 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/tools/testing/selftests/livepatch/ |
| H A D | README | 7 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/Documentation/translations/zh_CN/kbuild/ |
| H A D | kbuild.rst | 16 modules.order 21 modules.builtin 26 modules.builtin.modinfo 31 modules.builtin.ranges 231 $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 288 用于依赖其他模块符号的模块。详见 modules.rst。
|
| /linux/ |
| H A D | .gitignore | 59 modules.order 65 /modules-only.symvers 75 /modules.builtin 76 /modules.builtin.modinfo 77 /modules.builtin.ranges 78 /modules.nsdeps
|
| /linux/samples/ |
| H A D | Kconfig | 14 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/Documentation/i2c/busses/ |
| H A 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/tools/testing/crypto/chacha20-s390/ |
| H A D | Makefile | 10 make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) modules 12 make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) clean
|
| /linux/drivers/gpu/drm/ci/ |
| H A D | igt_runner.sh | 22 mkdir -p /lib/modules 26 mv /install/modules/lib/modules/* /lib/modules/. || true
|
| /linux/mm/damon/ |
| H A D | Makefile | 7 obj-$(CONFIG_DAMON_RECLAIM) += modules-common.o reclaim.o 8 obj-$(CONFIG_DAMON_LRU_SORT) += modules-common.o lru_sort.o 9 obj-$(CONFIG_DAMON_STAT) += modules-common.o stat.o
|
| /linux/tools/power/cpupower/debug/kernel/ |
| H A D | Makefile | 4 KDIR := /lib/modules/$(shell uname -r)/build 5 KMISC := /lib/modules/$(shell uname -r)/cpufrequtils/ 16 - rm -rf Module.symvers modules.order
|
| /linux/tools/testing/selftests/livepatch/test_modules/ |
| H A D | Makefile | 2 KDIR ?= /lib/modules/$(shell uname -r)/build 18 modules: target 20 $(Q)$(MAKE) -C $(KDIR) modules KBUILD_EXTMOD=$(TESTMODS_DIR)
|
| /linux/Documentation/security/ |
| H A D | lsm.rst | 33 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
|