diff options
author | Helge Deller <deller@gmx.de> | 2018-04-18 07:49:19 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-04-18 15:44:06 +0200 |
commit | 89e050c87dab3e933dcb90677947752d19aeafa4 (patch) | |
tree | 51bd2c271578d313569b127190d0aabae282375b /arch/parisc/Makefile | |
parent | a27fc14219f2e3c4a46ba9177b04d9b52c875532 (diff) | |
download | talos-obmc-linux-89e050c87dab3e933dcb90677947752d19aeafa4.tar.gz talos-obmc-linux-89e050c87dab3e933dcb90677947752d19aeafa4.zip |
parisc: Make bzImage default build target
Debian uses "make all" to build the Linux kernel, thus to be able to use
the self-decompressing kernel as default debian kernel we need to make
bzImage the default build target.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/Makefile')
-rw-r--r-- | arch/parisc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile index e2364ff59180..34ac503e28ad 100644 --- a/arch/parisc/Makefile +++ b/arch/parisc/Makefile @@ -123,6 +123,9 @@ INSTALL_TARGETS = zinstall install PHONY += bzImage $(BOOT_TARGETS) $(INSTALL_TARGETS) +# Default kernel to build +all: bzImage + zImage: vmlinuz Image: vmlinux |