
From: Simon Glass <sjg@chromium.org> A new filesystem interface is coming, so rename the main fs.c file to indicate that it is the old one. Signed-off-by: Simon Glass <sjg@chromium.org> --- fs/Makefile | 4 ++-- fs/{fs.c => fs_legacy.c} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename fs/{fs.c => fs_legacy.c} (100%) diff --git a/fs/Makefile b/fs/Makefile index f9f90a2d99c..51a0ad07a15 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -5,13 +5,13 @@ # Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. ifdef CONFIG_XPL_BUILD -obj-$(CONFIG_SPL_FS_LOADER) += fs.o +obj-$(CONFIG_SPL_FS_LOADER) += fs_legacy.o obj-$(CONFIG_SPL_FS_FAT) += fat/ obj-$(CONFIG_SPL_FS_EXT4) += ext4/ obj-$(CONFIG_SPL_FS_CBFS) += cbfs/ obj-$(CONFIG_SPL_FS_SQUASHFS) += squashfs/ else -obj-y += fs.o +obj-y += fs_legacy.o obj-$(CONFIG_FS_BTRFS) += btrfs/ obj-$(CONFIG_FS_CBFS) += cbfs/ diff --git a/fs/fs.c b/fs/fs_legacy.c similarity index 100% rename from fs/fs.c rename to fs/fs_legacy.c -- 2.43.0