1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0 21da177e4SLinus Torvalds# 31da177e4SLinus Torvalds# Makefile for some libs needed in the kernel. 41da177e4SLinus Torvalds# 51da177e4SLinus Torvalds 615d5761aSMasahiro Yamadaccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) 72464a609SIngo Molnar 82cbb20b0SJosh Poimboeuf# Branch profiling isn't noinstr-safe 92cbb20b0SJosh Poimboeufifdef CONFIG_TRACE_BRANCH_PROFILING 102cbb20b0SJosh PoimboeufCFLAGS_smp_processor_id.o += -DDISABLE_BRANCH_PROFILING 112cbb20b0SJosh Poimboeufendif 122cbb20b0SJosh Poimboeuf 135c9a8750SDmitry Vyukov# These files are disabled because they produce lots of non-interesting and/or 145c9a8750SDmitry Vyukov# flaky coverage that is not a function of syscall inputs. For example, 155c9a8750SDmitry Vyukov# rbtree can be global and individual rotations don't correlate with inputs. 165c9a8750SDmitry VyukovKCOV_INSTRUMENT_string.o := n 175c9a8750SDmitry VyukovKCOV_INSTRUMENT_rbtree.o := n 185c9a8750SDmitry VyukovKCOV_INSTRUMENT_list_debug.o := n 195c9a8750SDmitry VyukovKCOV_INSTRUMENT_debugobjects.o := n 205c9a8750SDmitry VyukovKCOV_INSTRUMENT_dynamic_debug.o := n 2143e76af8SDmitry VyukovKCOV_INSTRUMENT_fault-inject.o := n 22e24f4de8SAndrey KonovalovKCOV_INSTRUMENT_find_bit.o := n 235c9a8750SDmitry Vyukov 2433d0f96fSArvind Sankar# string.o implements standard library functions like memset/memcpy etc. 2533d0f96fSArvind Sankar# Use -ffreestanding to ensure that the compiler does not try to "optimize" 2633d0f96fSArvind Sankar# them into calls to themselves. 2733d0f96fSArvind SankarCFLAGS_string.o := -ffreestanding 2833d0f96fSArvind Sankar 29b51ce374SGary Hook# Early boot use of cmdline, don't instrument it 30b51ce374SGary Hookifdef CONFIG_AMD_MEM_ENCRYPT 31b51ce374SGary HookKASAN_SANITIZE_string.o := n 32b51ce374SGary Hook 3333d0f96fSArvind SankarCFLAGS_string.o += -fno-stack-protector 34b51ce374SGary Hookendif 35b51ce374SGary Hook 367a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \ 37f8d5d0ccSMatthew Wilcox rbtree.o radix-tree.o timerqueue.o xarray.o \ 3854a611b6SLiam R. Howlett maple_tree.o idr.o extable.o irq_regs.o argv_split.o \ 39e9aae170SKefeng Wang flex_proportions.o ratelimit.o \ 4018dd0bf2SLinus Torvalds is_single_threaded.o plist.o decompress.o kobject_uevent.o \ 41f2ae6794SSebastian Andrzej Siewior earlycpio.o seq_buf.o siphash.o dec_and_lock.o \ 4236d4b36bSYury Norov nmi_backtrace.o win_minmax.o memcat_p.o \ 43b76e89e5SFeng Tang buildid.o objpool.o iomem_copy.o sys_info.o 449a19fea4Smochel@digitalimplant.org 45bf9850f6SKuan-Wei Chiulib-$(CONFIG_UNION_FIND) += union_find.o 46e36df28fSDave Younglib-$(CONFIG_PRINTK) += dump_stack.o 472248ccd8SSander Vanheulelib-$(CONFIG_SMP) += cpumask.o 4892a8b224SKuan-Wei Chiulib-$(CONFIG_MIN_HEAP) += min_heap.o 49ccb46000SAndrew Morton 504af679cdSPeter Zijlstralib-y += kobject.o klist.o 512f4f12e5SLinus Torvaldsobj-y += lockref.o 521da177e4SLinus Torvalds 532c64e9cbSAndy Shevchenkoobj-y += bcd.o sort.o parser.o debug_locks.o random32.o \ 5464d1d77aSAndy Shevchenko bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \ 552c64e9cbSAndy Shevchenko list_sort.o uuid.o iov_iter.o clz_ctz.o \ 56de9e82c3SNeilBrown bsearch.o find_bit.o llist.o lwq.o memweight.o kfifo.o \ 57a116e1cdSHannes Reinecke percpu-refcount.o rhashtable.o base64.o \ 58ee1ee6dbSThomas Gleixner once.o refcount.o rcuref.o usercopy.o errseq.o bucket_locks.o \ 59aae06fc1SYury Norov generic-radix-tree.o bitmap-str.o 6016c7fa05SAndy Shevchenkoobj-y += string_helpers.o 6164d1d77aSAndy Shevchenkoobj-y += hexdump.o 6260b2e8f4SAndy Shevchenkoobj-$(CONFIG_TEST_HEXDUMP) += test_hexdump.o 6333ee3b2eSAlexey Dobriyanobj-y += kstrtox.o 64dceeb3e7SYury Norovobj-$(CONFIG_FIND_BIT_BENCHMARK) += find_bit_benchmark.o 65*38cc91dbSBurak Emirobj-$(CONFIG_FIND_BIT_BENCHMARK_RUST) += find_bit_benchmark_rust.o 6664a8946bSAlexei Starovoitovobj-$(CONFIG_TEST_BPF) += test_bpf.o 67d5528cc1SGeert Uytterhoeventest_dhry-objs := dhry_1.o dhry_2.o dhry_run.o 68d5528cc1SGeert Uytterhoevenobj-$(CONFIG_TEST_DHRY) += test_dhry.o 690a8adf58SKees Cookobj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o 70c348c163SJesse Brandeburgobj-$(CONFIG_TEST_BITOPS) += test_bitops.o 71c348c163SJesse BrandeburgCFLAGS_test_bitops.o += -Werror 729308f2f9SLuis R. Rodriguezobj-$(CONFIG_TEST_SYSCTL) += test_sysctl.o 738ab8ba38SMatthew Wilcoxobj-$(CONFIG_TEST_IDA) += test_ida.o 74854686f4SJinbum Parkobj-$(CONFIG_TEST_UBSAN) += test_ubsan.o 7530edbdf9SKees CookCFLAGS_test_ubsan.o += $(call cc-disable-warning, unused-but-set-variable) 76854686f4SJinbum ParkUBSAN_SANITIZE_test_ubsan.o := y 773f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o 786e24628dSIan Rogersobj-$(CONFIG_TEST_MIN_HEAP) += test_min_heap.o 793f15801cSAndrey Ryabininobj-$(CONFIG_TEST_LKM) += test_module.o 803f21a6b7SUladzislau Rezki (Sony)obj-$(CONFIG_TEST_VMALLOC) += test_vmalloc.o 819d6dbe1bSGeert Uytterhoevenobj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o 822bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o 832bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o 84683263a5SJim Cromieobj-$(CONFIG_TEST_DYNAMIC_DEBUG) += test_dynamic_debug.o 852356d198SYury Norov 865fd003f5SDavid Decotignyobj-$(CONFIG_TEST_BITMAP) += test_bitmap.o 872356d198SYury Norovifeq ($(CONFIG_CC_IS_CLANG)$(CONFIG_KASAN),yy) 882356d198SYury Norov# FIXME: Clang breaks test_bitmap_const_eval when KASAN and GCOV are enabled 892356d198SYury NorovGCOV_PROFILE_test_bitmap.o := n 902356d198SYury Norovendif 912356d198SYury Norov 92cfaff0e5SAndy Shevchenkoobj-$(CONFIG_TEST_UUID) += test_uuid.o 9305033905SAndrew Mortonobj-$(CONFIG_TEST_XARRAY) += test_xarray.o 94120b1162SLiam Howlettobj-$(CONFIG_TEST_MAPLE_TREE) += test_maple_tree.o 9544091d29SJiri Pirkoobj-$(CONFIG_TEST_PARMAN) += test_parman.o 96d9c6a72dSLuis R. Rodriguezobj-$(CONFIG_TEST_KMOD) += test_kmod.o 97e4dace36SFlorian Fainelliobj-$(CONFIG_TEST_DEBUG_VIRTUAL) += test_debug_virtual.o 98ce76d938SAlexander Shishkinobj-$(CONFIG_TEST_MEMCAT_P) += test_memcat_p.o 990a020d41SJiri Pirkoobj-$(CONFIG_TEST_OBJAGG) += test_objagg.o 1005015a300SAlexander Potapenkoobj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 10130428ef5SKonstantin Khlebnikovobj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 102b2ef9f5aSRalph Campbellobj-$(CONFIG_TEST_HMM) += test_hmm.o 103e320d301SMatthew Wilcox (Oracle)obj-$(CONFIG_TEST_FREE_PAGES) += test_free_pages.o 104914a7b50SEric Dumazetobj-$(CONFIG_TEST_REF_TRACKER) += test_ref_tracker.o 10592f90d3bSwuqiang.mattobj-$(CONFIG_TEST_OBJPOOL) += test_objpool.o 106b753522bSMike Rapoport (Microsoft)obj-$(CONFIG_TEST_KEXEC_HANDOVER) += test_kho.o 10792f90d3bSwuqiang.matt 1084185b3b9SPetteri Aimonenobj-$(CONFIG_TEST_FPU) += test_fpu.o 1099613736dSSamuel Hollandtest_fpu-y := test_fpu_glue.o test_fpu_impl.o 110790a4a3dSSamuel HollandCFLAGS_test_fpu_impl.o += $(CC_FLAGS_FPU) 111790a4a3dSSamuel HollandCFLAGS_REMOVE_test_fpu_impl.o += $(CC_FLAGS_NO_FPU) 1124185b3b9SPetteri Aimonen 11332ff6831SDavid Gowobj-y += kunit/ 11484bc809eSBrendan Higgins 1151da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y) 1161da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG 1171da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG 1181da177e4SLinus Torvaldsendif 1191da177e4SLinus Torvalds 12050ab9a69SRasmus Villemoesobj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o 12150ab9a69SRasmus VillemoesCFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any) 12250ab9a69SRasmus Villemoes 12389a51591SEric Biggersobj-y += math/ crc/ crypto/ tests/ vdso/ 1242c64e9cbSAndy Shevchenko 1255ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o 126928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o 127928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o 128cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o 129d61931d8SBorislav Petkov 130f361c863SJohn Garrylib-y += logic_pio.o 131031e3601SZhichang Yuan 132ca2e3342SJohannes Berglib-$(CONFIG_INDIRECT_IOMEM) += logic_iomem.o 133ca2e3342SJohannes Berg 134d593d64fSPrasad Sodagudiobj-$(CONFIG_TRACE_MMIO_ACCESS) += trace_readwrite.o 135d593d64fSPrasad Sodagudi 136702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o 137d61931d8SBorislav Petkov 1385db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o 139a88cc108SChris Wilsonobj-$(CONFIG_INTERVAL_TREE) += interval_tree.o 1403cb98950SDavid Howellsobj-$(CONFIG_ASSOCIATIVE_ARRAY) += assoc_array.o 14139c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o 142aebc7b0dSMarco Elverobj-$(CONFIG_LIST_HARDENED) += list_debug.o 1433ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o 1441da177e4SLinus Torvalds 145a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o 146d2218d4eSMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES) += linear_ranges.o 147554aae35SVladimir Olteanobj-$(CONFIG_PACKING) += packing.o 148e9502ea6SJacob Kellerobj-$(CONFIG_PACKING_KUNIT_TEST) += packing_test.o 1495d240522SNick Terrellobj-$(CONFIG_XXHASH) += xxhash.o 150f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o 1511da177e4SLinus Torvalds 1522da572c9SDan Streetmanobj-$(CONFIG_842_COMPRESS) += 842/ 1532da572c9SDan Streetmanobj-$(CONFIG_842_DECOMPRESS) += 842/ 1541da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ 1551da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ 156aa5b395bSMikhail Zaslonkoobj-$(CONFIG_ZLIB_DFLTCC) += zlib_dfltcc/ 1571da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/ 158437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o 15964c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/ 16064c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/ 161c72ac7a1SChanho Minobj-$(CONFIG_LZ4_COMPRESS) += lz4/ 162c72ac7a1SChanho Minobj-$(CONFIG_LZ4HC_COMPRESS) += lz4/ 163e76e1fdfSKyungsik Leeobj-$(CONFIG_LZ4_DECOMPRESS) += lz4/ 16473f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_COMPRESS) += zstd/ 16573f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_DECOMPRESS) += zstd/ 16624fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/ 167f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/ 1681da177e4SLinus Torvalds 169889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o 170889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o 171889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o 1723ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o 173cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o 174e76e1fdfSKyungsik Leelib-$(CONFIG_DECOMPRESS_LZ4) += decompress_unlz4.o 1754963bb2bSNick Terrelllib-$(CONFIG_DECOMPRESS_ZSTD) += decompress_unzstd.o 176c8531ab3SH. Peter Anvin 17765df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o 178df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 1798082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 1806408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 1813cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o 182e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o 1834b588411SAKASHI Takahiroobj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 1842de4ff7bSThomas Graf 1850d3fdb15SChristoph Hellwigobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o 1866ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 1872c739cedSAlbert van der Lindeobj-$(CONFIG_FAULT_INJECTION_USERCOPY) += fault-inject-usercopy.o 1888d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 189048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 19002fff96aSNikolay Aleksandrovobj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 1919579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 192d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 193d526e85fSBenjamin Herrenschmidt of-reconfig-notifier-error-inject.o 194540adea3SMasami Hiramatsuobj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o 1956c654b5fSJohn W. Linville 196916cc516SSuren Baghdasaryanobj-$(CONFIG_CODE_TAGGING) += codetag.o 19722d407b1SSuren Baghdasaryanobj-$(CONFIG_MEM_ALLOC_PROFILING) += alloc_tag.o 19822d407b1SSuren Baghdasaryan 1997664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o 2007664c5a1SJeremy Fitzhardinge 201bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o 202a88d970cSPaul E. McKenneyobj-$(CONFIG_ARCH_NEED_CMPXCHG_1_EMU) += cmpxchg-emu.o 203bbc69863SRoland McGrath 204ceabef7dSOrson Zhaiobj-$(CONFIG_DYNAMIC_DEBUG_CORE) += dynamic_debug.o 2057ce93729SJason Baron#ensure exported functions have prototypes 2067ce93729SJason BaronCFLAGS_dynamic_debug.o := -DDYNAMIC_DEBUG_MODULE 2077ce93729SJason Baron 20857f5677eSRasmus Villemoesobj-$(CONFIG_SYMBOLIC_ERRNAME) += errname.o 209346e15beSJason Baron 210e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o 2111da177e4SLinus Torvalds 212b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o 213b411b363SPhilipp Reisner 21426a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o 21526a28fa4SArnd Bergmann 21609d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o 21709d4e0edSPaul Mackerras 21886a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o 21986a89380SLuca Barbieri 220c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o 221c39649c3SBen Hutchings 2228c8d2d96SKent Overstreetobj-$(CONFIG_CLOSURES) += closure.o 2238c8d2d96SKent Overstreet 22475957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o 22575957ba3STom Herbert 226b0125085SGeorge Spelvinobj-$(CONFIG_GLOB) += glob.o 227ba95b045SGeert Uytterhoevenobj-$(CONFIG_GLOB_SELFTEST) += globtest.o 228b0125085SGeorge Spelvin 2294f75da36STal Gilboaobj-$(CONFIG_DIMLIB) += dim/ 2305e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o 231d9c46b18SDmitry Kasatkin 232f5948701SChris Metcalflib-$(CONFIG_CLZ_TAB) += clz_tab.o 233c6df4b17SDavid Miller 2342922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o 235a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o 2362922585bSDavid S. Miller 2374cd5773aSAndy Shevchenkoobj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o 2384cd5773aSAndy Shevchenko 239f8bcbe62SRobert Jarzmikobj-$(CONFIG_SG_SPLIT) += sg_split.o 2409b1d6c89SMing Linobj-$(CONFIG_SG_POOL) += sg_pool.o 24133dd7075SDan Williamsobj-$(CONFIG_MEMREGION) += memregion.o 2424ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o 243511cbce2SChristoph Hellwigobj-$(CONFIG_IRQ_POLL) += irq_poll.o 2444ccf4beaSWolfram Sang 245cd705ea8SMichael Walleobj-$(CONFIG_POLYNOMIAL) += polynomial.o 246cd705ea8SMichael Walle 2477b65942fSAlexander Potapenko# stackdepot.c should not be instrumented or call instrumented functions. 2487b65942fSAlexander Potapenko# Prevent the compiler from calling builtins like memcmp() or bcmp() from this 2497b65942fSAlexander Potapenko# file. 2507b65942fSAlexander PotapenkoCFLAGS_stackdepot.o += -fno-builtin 251cd11016eSAlexander Potapenkoobj-$(CONFIG_STACKDEPOT) += stackdepot.o 252cd11016eSAlexander PotapenkoKASAN_SANITIZE_stackdepot.o := n 25379dbd006SAlexander Potapenko# In particular, instrumenting stackdepot.c with KMSAN will result in infinite 25479dbd006SAlexander Potapenko# recursion. 25579dbd006SAlexander PotapenkoKMSAN_SANITIZE_stackdepot.o := n 25665deb8afSAlexander PotapenkoKCOV_INSTRUMENT_stackdepot.o := n 257cd11016eSAlexander Potapenko 2584e66934eSEric Dumazetobj-$(CONFIG_REF_TRACKER) += ref_tracker.o 2594e66934eSEric Dumazet 260adaf5687SMark Salterlibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \ 261c273a2bdSAKASHI Takahiro fdt_empty_tree.o fdt_addresses.o 262ab253839SDavid Daney$(foreach file, $(libfdt_files), \ 26313d3bc71SMasahiro Yamada $(eval CFLAGS_$(file) = -I $(srctree)/scripts/dtc/libfdt)) 264ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files) 265ab253839SDavid Daney 2666014a236SMasami Hiramatsuobj-$(CONFIG_BOOT_CONFIG) += bootconfig.o 267a2a9d67aSMasami Hiramatsuobj-$(CONFIG_BOOT_CONFIG_EMBED) += bootconfig-data.o 268a2a9d67aSMasami Hiramatsu 269a2a9d67aSMasami Hiramatsu$(obj)/bootconfig-data.o: $(obj)/default.bconf 270a2a9d67aSMasami Hiramatsu 271a2a9d67aSMasami Hiramatsutargets += default.bconf 272a2a9d67aSMasami Hiramatsufilechk_defbconf = cat $(or $(real-prereqs), /dev/null) 273a2a9d67aSMasami Hiramatsu$(obj)/default.bconf: $(CONFIG_BOOT_CONFIG_EMBED_FILE) FORCE 274a2a9d67aSMasami Hiramatsu $(call filechk,defbconf) 27576db5a27SMasami Hiramatsu 276910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o 277fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o 278fff3fd8aSMichel Lespinasse 279623fd807SGreg Thelenobj-$(CONFIG_PERCPU_TEST) += percpu_test.o 280623fd807SGreg Thelen 28142d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o 282b0706762SJames Bottomleyobj-$(CONFIG_ASN1_ENCODER) += asn1_encoder.o 28342d5ec27SDavid Howells 284ee89bd6bSGeert Uytterhoevenobj-$(CONFIG_FONT_SUPPORT) += fonts/ 285ee89bd6bSGeert Uytterhoeven 286a77ad6eaSDavid Howells# 287a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h 288a77ad6eaSDavid Howells# 289a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o 290a77ad6eaSDavid Howells 291527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c 292a77ad6eaSDavid Howells 293a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \ 294a77ad6eaSDavid Howells $(src)/build_OID_registry 295a77ad6eaSDavid Howells $(call cmd,build_OID_registry) 296a77ad6eaSDavid Howells 297a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN $@ 298b1992c37SMasahiro Yamada cmd_build_OID_registry = perl $(src)/build_OID_registry $< $@ 299a77ad6eaSDavid Howells 300a77ad6eaSDavid Howellsclean-files += oid_registry_data.c 3010635eb8aSMatthew Garrett 3020635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o 303c6d30853SAndrey Ryabininobj-$(CONFIG_UBSAN) += ubsan.o 304c6d30853SAndrey Ryabinin 305c6d30853SAndrey RyabininUBSAN_SANITIZE_ubsan.o := n 306af700eaeSArnd BergmannKASAN_SANITIZE_ubsan.o := n 307d47715f5SMarco ElverKCSAN_SANITIZE_ubsan.o := n 30857fbad15SKees CookCFLAGS_ubsan.o := -fno-stack-protector $(DISABLE_KSTACK_ERASE) 30988459642SOmar Sandoval 31088459642SOmar Sandovalobj-$(CONFIG_SBITMAP) += sbitmap.o 31144091d29SJiri Pirko 31244091d29SJiri Pirkoobj-$(CONFIG_PARMAN) += parman.o 313b35cd988SPalmer Dabbelt 314f7b3ea8cSMing Leiobj-y += group_cpus.o 315f7b3ea8cSMing Lei 316b35cd988SPalmer Dabbelt# GCC library routines 317e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHLDI3) += ashldi3.o 318e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHRDI3) += ashrdi3.o 319e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_LSHRDI3) += lshrdi3.o 320e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_MULDI3) += muldi3.o 321e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_CMPDI2) += cmpdi2.o 322e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_UCMPDI2) += ucmpdi2.o 3230a020d41SJiri Pirkoobj-$(CONFIG_OBJAGG) += objagg.o 324ea2dd7c0SDavid Gow 325b8265621SJacob Keller# pldmfw library 326b8265621SJacob Kellerobj-$(CONFIG_PLDMFW) += pldmfw/ 327b8265621SJacob Keller 328527701edSPalmer Dabbeltobj-$(CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED) += devmem_is_allowed.o 329be58f710SKees Cook 330a103f466SDave Jiangobj-$(CONFIG_FIRMWARE_TABLE) += fw_table.o 331a103f466SDave Jiang 3324e9903b0SMasahiro Yamadasubdir-$(CONFIG_FORTIFY_SOURCE) += test_fortify 333