mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 09:30:10 +00:00
ba8dd7755e
Because cmd_mkimage is used in various subdirectories, it seems reasonable to define it in scripts/Makefile.lib. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
18 lines
374 B
Makefile
18 lines
374 B
Makefile
#
|
|
# (C) Copyright 2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2004-2008
|
|
# Matrix-Vision GmbH, info@matrix-vision.de
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := mvsmr.o fpga.o
|
|
|
|
extra-y := bootscript.img
|
|
|
|
MKIMAGEFLAGS_bootscript.image := -T script -C none -n mvSMR_Script
|
|
|
|
$(obj)/bootscript.img: $(src)/bootscript
|
|
$(call cmd,mkimage)
|