diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2019-11-25 09:07:38 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-06 16:44:18 -0500 |
commit | 993c912d304d0aee0cd2f71ca4ff274741bf218c (patch) | |
tree | ec44ebcff20530f73ad458b3993f92c39716eeab /cmd/Makefile | |
parent | 2373cba3d2d5d182378c0259cf609438355bfece (diff) |
cmd: sysboot: Create a sysboot command dedicated file
Extract all sysboot command related code from pxe.c to new sysboot.c
Update Kconfig to insure that DISTRO_DEFAULT select new CMD_SYSBOOT
command.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 149daec2e4..e87c2f1625 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -130,6 +130,7 @@ obj-$(CONFIG_CMD_SETEXPR) += setexpr.o obj-$(CONFIG_CMD_SPI) += spi.o obj-$(CONFIG_CMD_STRINGS) += strings.o obj-$(CONFIG_CMD_SMC) += smccc.o +obj-$(CONFIG_CMD_SYSBOOT) += sysboot.o pxe_utils.o obj-$(CONFIG_CMD_TERMINAL) += terminal.o obj-$(CONFIG_CMD_TIME) += time.o obj-$(CONFIG_CMD_TRACE) += trace.o |