diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2019-11-25 09:07:37 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-06 16:44:18 -0500 |
commit | 2373cba3d2d5d182378c0259cf609438355bfece (patch) | |
tree | cb7825fb4b1bf12d1284a6ca7cf7dd3b60dec5fc /cmd/Makefile | |
parent | 1ac2cb974142132d9bfd988e6a8702d7a66958e0 (diff) | |
download | u-boot-2373cba3d2d5d182378c0259cf609438355bfece.tar.gz u-boot-2373cba3d2d5d182378c0259cf609438355bfece.tar.xz u-boot-2373cba3d2d5d182378c0259cf609438355bfece.zip |
cmd: Prepare sysboot command independence
As sysboot and pxe commands are sharing piece of code, migrate this
common code into a new file pxe_utils.c to prepare sysboot command
code extraction from pxe.c
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 36b3ceca39..149daec2e4 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -111,7 +111,7 @@ ifdef CONFIG_PCI obj-$(CONFIG_CMD_PCI) += pci.o endif obj-$(CONFIG_CMD_PINMUX) += pinmux.o -obj-$(CONFIG_CMD_PXE) += pxe.o +obj-$(CONFIG_CMD_PXE) += pxe.o pxe_utils.o obj-$(CONFIG_CMD_WOL) += wol.o obj-$(CONFIG_CMD_QFW) += qfw.o obj-$(CONFIG_CMD_READ) += read.o |