diff options
| author | Marek Vasut <[email protected]> | 2025-09-22 13:48:27 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-09 13:50:40 -0600 |
| commit | 8aa57934e52f254064338cfb2a445af9a1f592f9 (patch) | |
| tree | 54581ff7e27dc1839b7d2adf7e31f821c79a08b7 /lib/Makefile | |
| parent | a1fd7a9589bf150c6f79d3a37fbc426f00a8af94 (diff) | |
fw_loader: Split from fs_loader into separate library file
The script based firmware loader does not use anything from the
fs_loader implementation. Separate it into its own library source
file and convert the mediatek PHY to use this separate code. This
should reduce the amount of code that is pulled in alongside the
firmware loader, as the FS loader is no longer included.
Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 2643bfc867c..a2e60668864 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -22,6 +22,8 @@ obj-$(CONFIG_AES) += aes.o obj-$(CONFIG_AES) += aes/ obj-$(CONFIG_$(PHASE_)BINMAN_FDT) += binman.o +obj-$(CONFIG_FW_LOADER) += fw_loader.o + ifndef API_BUILD ifneq ($(CONFIG_CHARSET),) obj-y += charset.o |
