diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-01 11:52:15 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-01 11:52:15 +0000 |
commit | 3fdcb015795b59c36b072a6d96220bd15046d58e (patch) | |
tree | ca74bcc714c3c6a3dc65140f270153d24b8cfab2 | |
parent | 3de86a029a033c14a17a307f9dacbebf36e5e530 (diff) | |
download | buildroot-novena-3fdcb015795b59c36b072a6d96220bd15046d58e.tar.gz buildroot-novena-3fdcb015795b59c36b072a6d96220bd15046d58e.zip |
Allow user configurable kernel name
-rw-r--r-- | target/linux/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/linux/Makefile.in b/target/linux/Makefile.in index 21b22d814..f4ffd5d8d 100644 --- a/target/linux/Makefile.in +++ b/target/linux/Makefile.in @@ -55,7 +55,9 @@ LINUX26_BINLOC=arch/$(KERNEL_ARCH)/boot/$(LINUX26_FORMAT) endif # File name for the Linux kernel binary +ifndef LINUX26_KERNEL LINUX26_KERNEL=$(BINARIES_DIR)/linux-kernel-$(LINUX26_VERSION)-$(KERNEL_ARCH) +endif # Version of Linux AFTER patches LINUX26_DIR=$(BUILD_DIR)/linux-$(LINUX26_VERSION) |