avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
25
u-boot/fs/Makefile
Normal file
25
u-boot/fs/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
#
|
||||
# (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/
|
||||
obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
|
||||
else
|
||||
obj-y += fs.o
|
||||
|
||||
obj-$(CONFIG_CMD_CBFS) += cbfs/
|
||||
obj-$(CONFIG_CMD_CRAMFS) += cramfs/
|
||||
obj-$(CONFIG_FS_EXT4) += ext4/
|
||||
obj-y += fat/
|
||||
obj-$(CONFIG_CMD_JFFS2) += jffs2/
|
||||
obj-$(CONFIG_CMD_REISER) += reiserfs/
|
||||
obj-$(CONFIG_SANDBOX) += sandbox/
|
||||
obj-$(CONFIG_CMD_UBIFS) += ubifs/
|
||||
obj-$(CONFIG_YAFFS2) += yaffs2/
|
||||
obj-$(CONFIG_CMD_ZFS) += zfs/
|
||||
endif
|
||||
Reference in New Issue
Block a user