diff options
author | David Woodhouse <dwmw2@infradead.org> | 2008-05-31 08:07:18 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-10 09:47:41 -0400 |
commit | 8bd6b2229bf98761465020467ec33547d05bff46 (patch) | |
tree | 7254aa39f6cede847ec67377f17cf58a04f02c7e /scripts | |
parent | f1485f3deb89e6ae10c4d34662ec9e692855ab5d (diff) |
ihex: add ihex2fw tool for converting HEX files into firmware images
Not the straight conversion to binary which objcopy can do for us, but
actually representing each record with its original {addr, length},
because some drivers need that information preserved.
Fix up 'firmware_install' to be able to build $(hostprogs-y) too.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.fwinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst index 1c030087037f..3d2f4609578f 100644 --- a/scripts/Makefile.fwinst +++ b/scripts/Makefile.fwinst | |||
@@ -6,6 +6,7 @@ | |||
6 | # ========================================================================== | 6 | # ========================================================================== |
7 | 7 | ||
8 | INSTALL := install | 8 | INSTALL := install |
9 | src := $(obj) | ||
9 | 10 | ||
10 | # For modules_install installing firmware, we want to see .config | 11 | # For modules_install installing firmware, we want to see .config |
11 | # But for firmware_install, we don't care, but don't want to require it. | 12 | # But for firmware_install, we don't care, but don't want to require it. |
@@ -41,5 +42,4 @@ $(installed-fw): $(INSTALL_FW_PATH)/%: $(obj)/% | $(INSTALL_FW_PATH)/$$(dir %)/ | |||
41 | __fw_install: $(installed-fw) | 42 | __fw_install: $(installed-fw) |
42 | __fw_modinst: $(mod-fw) | 43 | __fw_modinst: $(mod-fw) |
43 | 44 | ||
44 | |||
45 | FORCE: | 45 | FORCE: |