X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=fs%2FMakefile;h=bad0c2cc33e9f632da7f1ca22178404f0ef1c7af;hb=e68687bf3c3642cf27325c80908d16a060642070;hp=5770f41c0b01a1a9b87220b09a842bdec25f24b9;hpb=59e12a4a8c219c4a334a2c2023edd1aa20f82a9e;p=u-boot diff --git a/fs/Makefile b/fs/Makefile index 5770f41c0b..bad0c2cc33 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -1,10 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. -# -# SPDX-License-Identifier: GPL-2.0+ -# ifdef CONFIG_SPL_BUILD obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/ @@ -12,6 +10,7 @@ obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/ else obj-y += fs.o +obj-$(CONFIG_FS_BTRFS) += btrfs/ obj-$(CONFIG_FS_CBFS) += cbfs/ obj-$(CONFIG_CMD_CRAMFS) += cramfs/ obj-$(CONFIG_FS_EXT4) += ext4/ @@ -23,3 +22,4 @@ obj-$(CONFIG_CMD_UBIFS) += ubifs/ obj-$(CONFIG_YAFFS2) += yaffs2/ obj-$(CONFIG_CMD_ZFS) += zfs/ endif +obj-y += fs_internal.o