e2fb36c865
SVN-Revision: 13605
28 lines
487 B
Makefile
28 lines
487 B
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
define Build/Clean
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Image/Prepare
|
|
cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage
|
|
endef
|
|
|
|
define Image/BuildKernel
|
|
cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
|
|
endef
|
|
|
|
define Image/Build
|
|
endef
|
|
|
|
$(eval $(call BuildImage))
|