1 b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0 2 1da177e4SLinus Torvalds# 3 1da177e4SLinus Torvalds# Makefile for some libs needed in the kernel. 4 1da177e4SLinus Torvalds# 5 1da177e4SLinus Torvalds 6 15d5761aSMasahiro Yamadaccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) 7 2464a609SIngo Molnar 8 5c9a8750SDmitry Vyukov# These files are disabled because they produce lots of non-interesting and/or 9 5c9a8750SDmitry Vyukov# flaky coverage that is not a function of syscall inputs. For example, 10 5c9a8750SDmitry Vyukov# rbtree can be global and individual rotations don't correlate with inputs. 11 5c9a8750SDmitry VyukovKCOV_INSTRUMENT_string.o := n 12 5c9a8750SDmitry VyukovKCOV_INSTRUMENT_rbtree.o := n 13 5c9a8750SDmitry VyukovKCOV_INSTRUMENT_list_debug.o := n 14 5c9a8750SDmitry VyukovKCOV_INSTRUMENT_debugobjects.o := n 15 5c9a8750SDmitry VyukovKCOV_INSTRUMENT_dynamic_debug.o := n 16 43e76af8SDmitry VyukovKCOV_INSTRUMENT_fault-inject.o := n 17 5c9a8750SDmitry Vyukov 18 33d0f96fSArvind Sankar# string.o implements standard library functions like memset/memcpy etc. 19 33d0f96fSArvind Sankar# Use -ffreestanding to ensure that the compiler does not try to "optimize" 20 33d0f96fSArvind Sankar# them into calls to themselves. 21 33d0f96fSArvind SankarCFLAGS_string.o := -ffreestanding 22 33d0f96fSArvind Sankar 23 b51ce374SGary Hook# Early boot use of cmdline, don't instrument it 24 b51ce374SGary Hookifdef CONFIG_AMD_MEM_ENCRYPT 25 b51ce374SGary HookKASAN_SANITIZE_string.o := n 26 b51ce374SGary Hook 27 33d0f96fSArvind SankarCFLAGS_string.o += -fno-stack-protector 28 b51ce374SGary Hookendif 29 b51ce374SGary Hook 30 7a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \ 31 f8d5d0ccSMatthew Wilcox rbtree.o radix-tree.o timerqueue.o xarray.o \ 32 *463f7408SEric Biggers idr.o extable.o irq_regs.o argv_split.o \ 33 d18d12d0SRichard Cochran flex_proportions.o ratelimit.o show_mem.o \ 34 18dd0bf2SLinus Torvalds is_single_threaded.o plist.o decompress.o kobject_uevent.o \ 35 f2ae6794SSebastian Andrzej Siewior earlycpio.o seq_buf.o siphash.o dec_and_lock.o \ 36 bd7525daSJiri Olsa nmi_backtrace.o nodemask.o win_minmax.o memcat_p.o \ 37 bd7525daSJiri Olsa buildid.o 38 9a19fea4Smochel@digitalimplant.org 39 e36df28fSDave Younglib-$(CONFIG_PRINTK) += dump_stack.o 40 ccb46000SAndrew Mortonlib-$(CONFIG_SMP) += cpumask.o 41 ccb46000SAndrew Morton 42 4af679cdSPeter Zijlstralib-y += kobject.o klist.o 43 2f4f12e5SLinus Torvaldsobj-y += lockref.o 44 1da177e4SLinus Torvalds 45 2c64e9cbSAndy Shevchenkoobj-y += bcd.o sort.o parser.o debug_locks.o random32.o \ 46 64d1d77aSAndy Shevchenko bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \ 47 2c64e9cbSAndy Shevchenko list_sort.o uuid.o iov_iter.o clz_ctz.o \ 48 840620a1SYury Norov bsearch.o find_bit.o llist.o memweight.o kfifo.o \ 49 2c64e9cbSAndy Shevchenko percpu-refcount.o rhashtable.o \ 50 ba20ba2eSKent Overstreet once.o refcount.o usercopy.o errseq.o bucket_locks.o \ 51 ba20ba2eSKent Overstreet generic-radix-tree.o 52 d6b28e09SGeert Uytterhoevenobj-$(CONFIG_STRING_SELFTEST) += test_string.o 53 16c7fa05SAndy Shevchenkoobj-y += string_helpers.o 54 16c7fa05SAndy Shevchenkoobj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o 55 64d1d77aSAndy Shevchenkoobj-y += hexdump.o 56 60b2e8f4SAndy Shevchenkoobj-$(CONFIG_TEST_HEXDUMP) += test_hexdump.o 57 33ee3b2eSAlexey Dobriyanobj-y += kstrtox.o 58 dceeb3e7SYury Norovobj-$(CONFIG_FIND_BIT_BENCHMARK) += find_bit_benchmark.o 59 64a8946bSAlexei Starovoitovobj-$(CONFIG_TEST_BPF) += test_bpf.o 60 0a8adf58SKees Cookobj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o 61 c348c163SJesse Brandeburgobj-$(CONFIG_TEST_BITOPS) += test_bitops.o 62 c348c163SJesse BrandeburgCFLAGS_test_bitops.o += -Werror 63 9308f2f9SLuis R. Rodriguezobj-$(CONFIG_TEST_SYSCTL) += test_sysctl.o 64 88168bf3SIsabella Bassoobj-$(CONFIG_TEST_SIPHASH) += test_siphash.o 65 0acc968fSIsabella Bassoobj-$(CONFIG_HASH_KUNIT_TEST) += test_hash.o 66 8ab8ba38SMatthew Wilcoxobj-$(CONFIG_TEST_IDA) += test_ida.o 67 73228c7eSPatricia Alfonsoobj-$(CONFIG_KASAN_KUNIT_TEST) += test_kasan.o 68 69ca372cSAndrey KonovalovCFLAGS_test_kasan.o += -fno-builtin 69 0bb95f80SKees CookCFLAGS_test_kasan.o += $(call cc-disable-warning, vla) 70 5d92bdffSAndrey Konovalovobj-$(CONFIG_KASAN_MODULE_TEST) += test_kasan_module.o 71 73228c7eSPatricia AlfonsoCFLAGS_test_kasan_module.o += -fno-builtin 72 854686f4SJinbum Parkobj-$(CONFIG_TEST_UBSAN) += test_ubsan.o 73 0bb95f80SKees CookCFLAGS_test_ubsan.o += $(call cc-disable-warning, vla) 74 854686f4SJinbum ParkUBSAN_SANITIZE_test_ubsan.o := y 75 3f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o 76 e327fd7cSGeert Uytterhoevenobj-$(CONFIG_TEST_LIST_SORT) += test_list_sort.o 77 6e24628dSIan Rogersobj-$(CONFIG_TEST_MIN_HEAP) += test_min_heap.o 78 3f15801cSAndrey Ryabininobj-$(CONFIG_TEST_LKM) += test_module.o 79 3f21a6b7SUladzislau Rezki (Sony)obj-$(CONFIG_TEST_VMALLOC) += test_vmalloc.o 80 9d6dbe1bSGeert Uytterhoevenobj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o 81 c5adae95SKostenzer Felixobj-$(CONFIG_TEST_SORT) += test_sort.o 82 3f15801cSAndrey Ryabininobj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o 83 2bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o 84 2bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o 85 707cc728SRasmus Villemoesobj-$(CONFIG_TEST_PRINTF) += test_printf.o 86 50f530e1SRichard Fitzgeraldobj-$(CONFIG_TEST_SCANF) += test_scanf.o 87 5fd003f5SDavid Decotignyobj-$(CONFIG_TEST_BITMAP) += test_bitmap.o 88 0b0600c8STobin C. Hardingobj-$(CONFIG_TEST_STRSCPY) += test_strscpy.o 89 cfaff0e5SAndy Shevchenkoobj-$(CONFIG_TEST_UUID) += test_uuid.o 90 ad3d6c72SMatthew Wilcoxobj-$(CONFIG_TEST_XARRAY) += test_xarray.o 91 44091d29SJiri Pirkoobj-$(CONFIG_TEST_PARMAN) += test_parman.o 92 d9c6a72dSLuis R. Rodriguezobj-$(CONFIG_TEST_KMOD) += test_kmod.o 93 e4dace36SFlorian Fainelliobj-$(CONFIG_TEST_DEBUG_VIRTUAL) += test_debug_virtual.o 94 ce76d938SAlexander Shishkinobj-$(CONFIG_TEST_MEMCAT_P) += test_memcat_p.o 95 0a020d41SJiri Pirkoobj-$(CONFIG_TEST_OBJAGG) += test_objagg.o 96 509e56b3SMahesh Bandewarobj-$(CONFIG_TEST_BLACKHOLE_DEV) += test_blackhole_dev.o 97 5015a300SAlexander Potapenkoobj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 98 30428ef5SKonstantin Khlebnikovobj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 99 b2ef9f5aSRalph Campbellobj-$(CONFIG_TEST_HMM) += test_hmm.o 100 e320d301SMatthew Wilcox (Oracle)obj-$(CONFIG_TEST_FREE_PAGES) += test_free_pages.o 101 b9e94a7bSTiezhu Yangobj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o 102 914a7b50SEric Dumazetobj-$(CONFIG_TEST_REF_TRACKER) += test_ref_tracker.o 103 f4616fabSMasami HiramatsuCFLAGS_test_fprobe.o += $(CC_FLAGS_FTRACE) 104 f4616fabSMasami Hiramatsuobj-$(CONFIG_FPROBE_SANITY_TEST) += test_fprobe.o 105 4185b3b9SPetteri Aimonen# 106 4185b3b9SPetteri Aimonen# CFLAGS for compiling floating point code inside the kernel. x86/Makefile turns 107 4185b3b9SPetteri Aimonen# off the generation of FPU/SSE* instructions for kernel proper but FPU_FLAGS 108 4185b3b9SPetteri Aimonen# get appended last to CFLAGS and thus override those previous compiler options. 109 4185b3b9SPetteri Aimonen# 110 84edc2efSArnd BergmannFPU_CFLAGS := -msse -msse2 111 4185b3b9SPetteri Aimonenifdef CONFIG_CC_IS_GCC 112 4185b3b9SPetteri Aimonen# Stack alignment mismatch, proceed with caution. 113 4185b3b9SPetteri Aimonen# GCC < 7.1 cannot compile code using `double` and -mpreferred-stack-boundary=3 114 4185b3b9SPetteri Aimonen# (8B stack alignment). 115 4185b3b9SPetteri Aimonen# See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53383 116 4185b3b9SPetteri Aimonen# 117 4185b3b9SPetteri Aimonen# The "-msse" in the first argument is there so that the 118 4185b3b9SPetteri Aimonen# -mpreferred-stack-boundary=3 build error: 119 4185b3b9SPetteri Aimonen# 120 4185b3b9SPetteri Aimonen# -mpreferred-stack-boundary=3 is not between 4 and 12 121 4185b3b9SPetteri Aimonen# 122 4185b3b9SPetteri Aimonen# can be triggered. Otherwise gcc doesn't complain. 123 84edc2efSArnd BergmannFPU_CFLAGS += -mhard-float 124 4185b3b9SPetteri AimonenFPU_CFLAGS += $(call cc-option,-msse -mpreferred-stack-boundary=3,-mpreferred-stack-boundary=4) 125 4185b3b9SPetteri Aimonenendif 126 4185b3b9SPetteri Aimonen 127 4185b3b9SPetteri Aimonenobj-$(CONFIG_TEST_FPU) += test_fpu.o 128 4185b3b9SPetteri AimonenCFLAGS_test_fpu.o += $(FPU_CFLAGS) 129 4185b3b9SPetteri Aimonen 130 a2818ee4SJoe Lawrenceobj-$(CONFIG_TEST_LIVEPATCH) += livepatch/ 131 a2818ee4SJoe Lawrence 132 84bc809eSBrendan Higginsobj-$(CONFIG_KUNIT) += kunit/ 133 84bc809eSBrendan Higgins 134 1da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y) 135 1da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG 136 1da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG 137 1da177e4SLinus Torvaldsendif 138 1da177e4SLinus Torvalds 139 50ab9a69SRasmus Villemoesobj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o 140 50ab9a69SRasmus VillemoesCFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any) 141 50ab9a69SRasmus Villemoes 142 dc51f257SArd Biesheuvelobj-y += math/ crypto/ 143 2c64e9cbSAndy Shevchenko 144 5ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o 145 66eab4dfSMichael S. Tsirkinobj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o 146 928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o 147 928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o 148 cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o 149 d61931d8SBorislav Petkov 150 f361c863SJohn Garrylib-y += logic_pio.o 151 031e3601SZhichang Yuan 152 ca2e3342SJohannes Berglib-$(CONFIG_INDIRECT_IOMEM) += logic_iomem.o 153 ca2e3342SJohannes Berg 154 702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o 155 d61931d8SBorislav Petkov 156 5db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o 157 a88cc108SChris Wilsonobj-$(CONFIG_INTERVAL_TREE) += interval_tree.o 158 3cb98950SDavid Howellsobj-$(CONFIG_ASSOCIATIVE_ARRAY) += assoc_array.o 159 39c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o 160 199a9afcSDave Jonesobj-$(CONFIG_DEBUG_LIST) += list_debug.o 161 3ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o 162 1da177e4SLinus Torvalds 163 a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o 164 d2218d4eSMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES) += linear_ranges.o 165 554aae35SVladimir Olteanobj-$(CONFIG_PACKING) += packing.o 166 1da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT) += crc-ccitt.o 167 7657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16) += crc16.o 168 f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o 169 3e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o 170 1da177e4SLinus Torvaldsobj-$(CONFIG_CRC32) += crc32.o 171 feba04fdSColy Liobj-$(CONFIG_CRC64) += crc64.o 172 5fb7f874SGeert Uytterhoevenobj-$(CONFIG_CRC32_SELFTEST) += crc32test.o 173 0cbaa448SJeremy Kerrobj-$(CONFIG_CRC4) += crc4.o 174 ad241528SJan Nikitenkoobj-$(CONFIG_CRC7) += crc7.o 175 1da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C) += libcrc32c.o 176 7150962dSArend van Sprielobj-$(CONFIG_CRC8) += crc8.o 177 f3813f4bSKeith Buschobj-$(CONFIG_CRC64_ROCKSOFT) += crc64-rocksoft.o 178 5d240522SNick Terrellobj-$(CONFIG_XXHASH) += xxhash.o 179 f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o 180 1da177e4SLinus Torvalds 181 2da572c9SDan Streetmanobj-$(CONFIG_842_COMPRESS) += 842/ 182 2da572c9SDan Streetmanobj-$(CONFIG_842_DECOMPRESS) += 842/ 183 1da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ 184 1da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ 185 aa5b395bSMikhail Zaslonkoobj-$(CONFIG_ZLIB_DFLTCC) += zlib_dfltcc/ 186 1da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/ 187 437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o 188 64c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/ 189 64c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/ 190 c72ac7a1SChanho Minobj-$(CONFIG_LZ4_COMPRESS) += lz4/ 191 c72ac7a1SChanho Minobj-$(CONFIG_LZ4HC_COMPRESS) += lz4/ 192 e76e1fdfSKyungsik Leeobj-$(CONFIG_LZ4_DECOMPRESS) += lz4/ 193 73f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_COMPRESS) += zstd/ 194 73f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_DECOMPRESS) += zstd/ 195 24fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/ 196 f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/ 197 1da177e4SLinus Torvalds 198 889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o 199 889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o 200 889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o 201 3ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o 202 cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o 203 e76e1fdfSKyungsik Leelib-$(CONFIG_DECOMPRESS_LZ4) += decompress_unlz4.o 204 4963bb2bSNick Terrelllib-$(CONFIG_DECOMPRESS_ZSTD) += decompress_unzstd.o 205 c8531ab3SH. Peter Anvin 206 65df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o 207 df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 208 8082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 209 6408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 210 3cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o 211 e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o 212 4b588411SAKASHI Takahiroobj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 213 2de4ff7bSThomas Graf 214 0d3fdb15SChristoph Hellwigobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o 215 6ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 216 2c739cedSAlbert van der Lindeobj-$(CONFIG_FAULT_INJECTION_USERCOPY) += fault-inject-usercopy.o 217 8d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 218 048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 219 02fff96aSNikolay Aleksandrovobj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 220 9579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 221 d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 222 d526e85fSBenjamin Herrenschmidt of-reconfig-notifier-error-inject.o 223 540adea3SMasami Hiramatsuobj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o 224 6c654b5fSJohn W. Linville 225 7664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o 226 7664c5a1SJeremy Fitzhardinge 227 bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o 228 bbc69863SRoland McGrath 229 ceabef7dSOrson Zhaiobj-$(CONFIG_DYNAMIC_DEBUG_CORE) += dynamic_debug.o 230 57f5677eSRasmus Villemoesobj-$(CONFIG_SYMBOLIC_ERRNAME) += errname.o 231 346e15beSJason Baron 232 e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o 233 1da177e4SLinus Torvalds 234 b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o 235 b411b363SPhilipp Reisner 236 26a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o 237 26a28fa4SArnd Bergmann 238 09d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o 239 09d4e0edSPaul Mackerras 240 86a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o 241 86a89380SLuca Barbieri 242 c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o 243 c39649c3SBen Hutchings 244 75957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o 245 75957ba3STom Herbert 246 b0125085SGeorge Spelvinobj-$(CONFIG_GLOB) += glob.o 247 ba95b045SGeert Uytterhoevenobj-$(CONFIG_GLOB_SELFTEST) += globtest.o 248 b0125085SGeorge Spelvin 249 d9c46b18SDmitry Kasatkinobj-$(CONFIG_MPILIB) += mpi/ 250 4f75da36STal Gilboaobj-$(CONFIG_DIMLIB) += dim/ 251 5e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o 252 d9c46b18SDmitry Kasatkin 253 f5948701SChris Metcalflib-$(CONFIG_CLZ_TAB) += clz_tab.o 254 920b0442SJason A. Donenfeldlib-$(CONFIG_LIB_MEMNEQ) += memneq.o 255 c6df4b17SDavid Miller 256 2922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o 257 a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o 258 2922585bSDavid S. Miller 259 4cd5773aSAndy Shevchenkoobj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o 260 4cd5773aSAndy Shevchenko 261 f8bcbe62SRobert Jarzmikobj-$(CONFIG_SG_SPLIT) += sg_split.o 262 9b1d6c89SMing Linobj-$(CONFIG_SG_POOL) += sg_pool.o 263 33dd7075SDan Williamsobj-$(CONFIG_MEMREGION) += memregion.o 264 4ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o 265 511cbce2SChristoph Hellwigobj-$(CONFIG_IRQ_POLL) += irq_poll.o 266 4ccf4beaSWolfram Sang 267 cd705ea8SMichael Walleobj-$(CONFIG_POLYNOMIAL) += polynomial.o 268 cd705ea8SMichael Walle 269 7b65942fSAlexander Potapenko# stackdepot.c should not be instrumented or call instrumented functions. 270 7b65942fSAlexander Potapenko# Prevent the compiler from calling builtins like memcmp() or bcmp() from this 271 7b65942fSAlexander Potapenko# file. 272 7b65942fSAlexander PotapenkoCFLAGS_stackdepot.o += -fno-builtin 273 cd11016eSAlexander Potapenkoobj-$(CONFIG_STACKDEPOT) += stackdepot.o 274 cd11016eSAlexander PotapenkoKASAN_SANITIZE_stackdepot.o := n 275 65deb8afSAlexander PotapenkoKCOV_INSTRUMENT_stackdepot.o := n 276 cd11016eSAlexander Potapenko 277 4e66934eSEric Dumazetobj-$(CONFIG_REF_TRACKER) += ref_tracker.o 278 4e66934eSEric Dumazet 279 adaf5687SMark Salterlibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \ 280 c273a2bdSAKASHI Takahiro fdt_empty_tree.o fdt_addresses.o 281 ab253839SDavid Daney$(foreach file, $(libfdt_files), \ 282 13d3bc71SMasahiro Yamada $(eval CFLAGS_$(file) = -I $(srctree)/scripts/dtc/libfdt)) 283 ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files) 284 ab253839SDavid Daney 285 6014a236SMasami Hiramatsuobj-$(CONFIG_BOOT_CONFIG) += bootconfig.o 286 a2a9d67aSMasami Hiramatsuobj-$(CONFIG_BOOT_CONFIG_EMBED) += bootconfig-data.o 287 a2a9d67aSMasami Hiramatsu 288 a2a9d67aSMasami Hiramatsu$(obj)/bootconfig-data.o: $(obj)/default.bconf 289 a2a9d67aSMasami Hiramatsu 290 a2a9d67aSMasami Hiramatsutargets += default.bconf 291 a2a9d67aSMasami Hiramatsufilechk_defbconf = cat $(or $(real-prereqs), /dev/null) 292 a2a9d67aSMasami Hiramatsu$(obj)/default.bconf: $(CONFIG_BOOT_CONFIG_EMBED_FILE) FORCE 293 a2a9d67aSMasami Hiramatsu $(call filechk,defbconf) 294 76db5a27SMasami Hiramatsu 295 910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o 296 fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o 297 fff3fd8aSMichel Lespinasse 298 623fd807SGreg Thelenobj-$(CONFIG_PERCPU_TEST) += percpu_test.o 299 623fd807SGreg Thelen 300 42d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o 301 b0706762SJames Bottomleyobj-$(CONFIG_ASN1_ENCODER) += asn1_encoder.o 302 42d5ec27SDavid Howells 303 ee89bd6bSGeert Uytterhoevenobj-$(CONFIG_FONT_SUPPORT) += fonts/ 304 ee89bd6bSGeert Uytterhoeven 305 5f2fb52fSMasahiro Yamadahostprogs := gen_crc32table 306 5f2fb52fSMasahiro Yamadahostprogs += gen_crc64table 307 1da177e4SLinus Torvaldsclean-files := crc32table.h 308 feba04fdSColy Liclean-files += crc64table.h 309 1da177e4SLinus Torvalds 310 1da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h 311 1da177e4SLinus Torvalds 312 1da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN $@ 313 1da177e4SLinus Torvalds cmd_crc32 = $< > $@ 314 1da177e4SLinus Torvalds 315 1da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table 316 1da177e4SLinus Torvalds $(call cmd,crc32) 317 a77ad6eaSDavid Howells 318 feba04fdSColy Li$(obj)/crc64.o: $(obj)/crc64table.h 319 feba04fdSColy Li 320 feba04fdSColy Liquiet_cmd_crc64 = GEN $@ 321 feba04fdSColy Li cmd_crc64 = $< > $@ 322 feba04fdSColy Li 323 feba04fdSColy Li$(obj)/crc64table.h: $(obj)/gen_crc64table 324 feba04fdSColy Li $(call cmd,crc64) 325 feba04fdSColy Li 326 a77ad6eaSDavid Howells# 327 a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h 328 a77ad6eaSDavid Howells# 329 a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o 330 a77ad6eaSDavid Howells 331 527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c 332 a77ad6eaSDavid Howells 333 a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \ 334 a77ad6eaSDavid Howells $(src)/build_OID_registry 335 a77ad6eaSDavid Howells $(call cmd,build_OID_registry) 336 a77ad6eaSDavid Howells 337 a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN $@ 338 a77ad6eaSDavid Howells cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@ 339 a77ad6eaSDavid Howells 340 a77ad6eaSDavid Howellsclean-files += oid_registry_data.c 341 0635eb8aSMatthew Garrett 342 0635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o 343 0887a7ebSKees Cookifneq ($(CONFIG_UBSAN_TRAP),y) 344 c6d30853SAndrey Ryabininobj-$(CONFIG_UBSAN) += ubsan.o 345 0887a7ebSKees Cookendif 346 c6d30853SAndrey Ryabinin 347 c6d30853SAndrey RyabininUBSAN_SANITIZE_ubsan.o := n 348 af700eaeSArnd BergmannKASAN_SANITIZE_ubsan.o := n 349 d47715f5SMarco ElverKCSAN_SANITIZE_ubsan.o := n 350 893ab004SMasahiro YamadaCFLAGS_ubsan.o := -fno-stack-protector $(DISABLE_STACKLEAK_PLUGIN) 351 88459642SOmar Sandoval 352 88459642SOmar Sandovalobj-$(CONFIG_SBITMAP) += sbitmap.o 353 44091d29SJiri Pirko 354 44091d29SJiri Pirkoobj-$(CONFIG_PARMAN) += parman.o 355 b35cd988SPalmer Dabbelt 356 b35cd988SPalmer Dabbelt# GCC library routines 357 e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHLDI3) += ashldi3.o 358 e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHRDI3) += ashrdi3.o 359 e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_LSHRDI3) += lshrdi3.o 360 e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_MULDI3) += muldi3.o 361 e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_CMPDI2) += cmpdi2.o 362 e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_UCMPDI2) += ucmpdi2.o 363 0a020d41SJiri Pirkoobj-$(CONFIG_OBJAGG) += objagg.o 364 ea2dd7c0SDavid Gow 365 b8265621SJacob Keller# pldmfw library 366 b8265621SJacob Kellerobj-$(CONFIG_PLDMFW) += pldmfw/ 367 b8265621SJacob Keller 368 ea2dd7c0SDavid Gow# KUnit tests 369 a8cf9033SArnd BergmannCFLAGS_bitfield_kunit.o := $(DISABLE_STRUCTLEAK_PLUGIN) 370 d2585f51SVitor Massaru Ihaobj-$(CONFIG_BITFIELD_KUNIT) += bitfield_kunit.o 371 ea2dd7c0SDavid Gowobj-$(CONFIG_LIST_KUNIT_TEST) += list-test.o 372 33d599f0SMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES_TEST) += test_linear_ranges.o 373 6d511020SRikard Falkebornobj-$(CONFIG_BITS_TEST) += test_bits.o 374 7546861aSAndy Shevchenkoobj-$(CONFIG_CMDLINE_KUNIT_TEST) += cmdline_kunit.o 375 1f9f78b1SOliver Glittaobj-$(CONFIG_SLUB_KUNIT_TEST) += slub_kunit.o 376 bb95ebbeSKees Cookobj-$(CONFIG_MEMCPY_KUNIT_TEST) += memcpy_kunit.o 377 617f55e2SKees Cookobj-$(CONFIG_OVERFLOW_KUNIT_TEST) += overflow_kunit.o 378 02788ebcSKees CookCFLAGS_stackinit_kunit.o += $(call cc-disable-warning, switch-unreachable) 379 02788ebcSKees Cookobj-$(CONFIG_STACKINIT_KUNIT_TEST) += stackinit_kunit.o 380 527701edSPalmer Dabbelt 381 527701edSPalmer Dabbeltobj-$(CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED) += devmem_is_allowed.o 382 be58f710SKees Cook 383 be58f710SKees Cook# FORTIFY_SOURCE compile-time behavior tests 384 be58f710SKees CookTEST_FORTIFY_SRCS = $(wildcard $(srctree)/$(src)/test_fortify/*-*.c) 385 be58f710SKees CookTEST_FORTIFY_LOGS = $(patsubst $(srctree)/$(src)/%.c, %.log, $(TEST_FORTIFY_SRCS)) 386 be58f710SKees CookTEST_FORTIFY_LOG = test_fortify.log 387 be58f710SKees Cook 388 be58f710SKees Cookquiet_cmd_test_fortify = TEST $@ 389 be58f710SKees Cook cmd_test_fortify = $(CONFIG_SHELL) $(srctree)/scripts/test_fortify.sh \ 390 be58f710SKees Cook $< $@ "$(NM)" $(CC) $(c_flags) \ 391 f68f2ff9SKees Cook $(call cc-disable-warning,fortify-source) \ 392 f68f2ff9SKees Cook -DKBUILD_EXTRA_WARN1 393 be58f710SKees Cook 394 be58f710SKees Cooktargets += $(TEST_FORTIFY_LOGS) 395 be58f710SKees Cookclean-files += $(TEST_FORTIFY_LOGS) 396 be58f710SKees Cookclean-files += $(addsuffix .o, $(TEST_FORTIFY_LOGS)) 397 be58f710SKees Cook$(obj)/test_fortify/%.log: $(src)/test_fortify/%.c \ 398 be58f710SKees Cook $(src)/test_fortify/test_fortify.h \ 399 be58f710SKees Cook $(srctree)/include/linux/fortify-string.h \ 400 be58f710SKees Cook $(srctree)/scripts/test_fortify.sh \ 401 be58f710SKees Cook FORCE 402 be58f710SKees Cook $(call if_changed,test_fortify) 403 be58f710SKees Cook 404 be58f710SKees Cookquiet_cmd_gen_fortify_log = GEN $@ 405 be58f710SKees Cook cmd_gen_fortify_log = cat </dev/null $(filter-out FORCE,$^) 2>/dev/null > $@ || true 406 be58f710SKees Cook 407 be58f710SKees Cooktargets += $(TEST_FORTIFY_LOG) 408 be58f710SKees Cookclean-files += $(TEST_FORTIFY_LOG) 409 be58f710SKees Cook$(obj)/$(TEST_FORTIFY_LOG): $(addprefix $(obj)/, $(TEST_FORTIFY_LOGS)) FORCE 410 be58f710SKees Cook $(call if_changed,gen_fortify_log) 411 be58f710SKees Cook 412 be58f710SKees Cook# Fake dependency to trigger the fortify tests. 413 be58f710SKees Cookifeq ($(CONFIG_FORTIFY_SOURCE),y) 414 be58f710SKees Cook$(obj)/string.o: $(obj)/$(TEST_FORTIFY_LOG) 415 be58f710SKees Cookendif 416