mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
09c3280754
Move common functions from cmd_nand.c (for calculating offset and size from cmdline paramter) to common place, so they could used from other commands which use mtd partitions. For onenand the arg_off_size() is left in common/cmd_onenand.c. It should use now the common arg_off() function, but as I could not test onenand I let it there ... Signed-off-by: Heiko Schocher <hs@denx.de> Acked-by: Scott Wood <scottwood@freescale.com> Reviewed-by: Jagannadh Teki <jteki@openedev.com>
20 lines
670 B
Makefile
20 lines
670 B
Makefile
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifneq (,$(findstring y,$(CONFIG_MTD_DEVICE)$(CONFIG_CMD_NAND)$(CONFIG_CMD_ONENAND)$(CONFIG_CMD_SF)))
|
|
obj-y += mtdcore.o mtd_uboot.o
|
|
endif
|
|
obj-$(CONFIG_MTD_PARTITIONS) += mtdpart.o
|
|
obj-$(CONFIG_MTD_CONCAT) += mtdconcat.o
|
|
obj-$(CONFIG_HAS_DATAFLASH) += at45.o
|
|
obj-$(CONFIG_FLASH_CFI_DRIVER) += cfi_flash.o
|
|
obj-$(CONFIG_FLASH_CFI_MTD) += cfi_mtd.o
|
|
obj-$(CONFIG_HAS_DATAFLASH) += dataflash.o
|
|
obj-$(CONFIG_FTSMC020) += ftsmc020.o
|
|
obj-$(CONFIG_FLASH_CFI_LEGACY) += jedec_flash.o
|
|
obj-$(CONFIG_MW_EEPROM) += mw_eeprom.o
|
|
obj-$(CONFIG_ST_SMI) += st_smi.o
|