diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-05-30 19:14:27 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-05-30 19:14:27 +0200 |
commit | d1336177b7215b7a638231bb1ec5fd22a87d9adb (patch) | |
tree | 65efb3b1487f0c658f02a08d97de6dc57de59254 /target/alix1c/Makefile | |
parent | ed18fdf27be16211745a9d81dbcd3c1f1b529b75 (diff) | |
parent | 1a1c38ece81ef998be92218ade235bc7b44d9643 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'target/alix1c/Makefile')
-rw-r--r-- | target/alix1c/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/alix1c/Makefile b/target/alix1c/Makefile index da95587ed..5a737fd8a 100644 --- a/target/alix1c/Makefile +++ b/target/alix1c/Makefile @@ -7,8 +7,10 @@ include $(TOPDIR)/mk/modules.mk include $(TOPDIR)/mk/kernel-build.mk include $(TOPDIR)/mk/image.mk +KERNEL:=$(LINUX_DIR)/arch/x86/boot/bzImage + kernel-install: - cp $(LINUX_DIR)/arch/x86/boot/bzImage $(TARGET_DIR)/boot/vmlinuz-adk + @cp $(KERNEL) $(TARGET_DIR)/boot/vmlinuz-adk ifeq ($(FS),ext2-block) imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) @@ -19,11 +21,9 @@ imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) endif ifeq ($(FS),nfsroot) imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) - @cp $(LINUX_DIR)/arch/x86/boot/bzImage \ - $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel $(MAKE_TRACE) + @cp $(KERNEL) $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel @echo @echo 'The linux kernel is here: $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel' @echo 'The nfs root tarball is here: ${BIN_DIR}/${ROOTFSTARBALL}' - @echo 'Do not forget to create device nodes for console,null and tty in your nfsroot' @echo 'Login as user root with password linux123 via ssh or console' endif |