diff options
author | David Woodhouse <dwmw2@infradead.org> | 2008-07-16 01:54:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-16 10:34:18 -0400 |
commit | d25dc7fd4740decf4c66e2f17dbaa288448fabd5 (patch) | |
tree | aec546418d8d003c262e9730e8ed4a3e213df3cd /firmware | |
parent | 45158894d4d6704afbb4cefe55e5f6ca279fe12a (diff) |
Fix 'make clean' and .gitignore for firmware/ directory.
Provide a .gitignore file, and fix a typo which prevented some of the
generated binary files from being removed on 'make clean'.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Reported-and-tested-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/.gitignore | 6 | ||||
-rw-r--r-- | firmware/Makefile | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/firmware/.gitignore b/firmware/.gitignore new file mode 100644 index 000000000000..d9c69017bc9a --- /dev/null +++ b/firmware/.gitignore | |||
@@ -0,0 +1,6 @@ | |||
1 | *.gen.S | ||
2 | *.fw | ||
3 | *.bin | ||
4 | *.csp | ||
5 | *.dsp | ||
6 | ihex2fw | ||
diff --git a/firmware/Makefile b/firmware/Makefile index e4f2fb3d1917..9fe86041f86e 100644 --- a/firmware/Makefile +++ b/firmware/Makefile | |||
@@ -56,7 +56,7 @@ fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA28X) += keyspan/usa28x.fw | |||
56 | fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA49W) += keyspan/usa49w.fw | 56 | fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA49W) += keyspan/usa49w.fw |
57 | fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA49WLC) += keyspan/usa49wlc.fw | 57 | fw-shipped-$(CONFIG_USB_SERIAL_KEYSPAN_USA49WLC) += keyspan/usa49wlc.fw |
58 | else | 58 | else |
59 | fw-shipped- := keyspan/mpr.fw keyspan/usa18x.fw keyspan/usa19.fw \ | 59 | fw-shipped- += keyspan/mpr.fw keyspan/usa18x.fw keyspan/usa19.fw \ |
60 | keyspan/usa19qi.fw keyspan/usa19qw.fw keyspan/usa19w.fw \ | 60 | keyspan/usa19qi.fw keyspan/usa19qw.fw keyspan/usa19w.fw \ |
61 | keyspan/usa28.fw keyspan/usa28xa.fw keyspan/usa28xb.fw \ | 61 | keyspan/usa28.fw keyspan/usa28xa.fw keyspan/usa28xb.fw \ |
62 | keyspan/usa28x.fw keyspan/usa49w.fw keyspan/usa49wlc.fw | 62 | keyspan/usa28x.fw keyspan/usa49w.fw keyspan/usa49wlc.fw |