mirror of https://github.com/hak5/openwrt.git
30 lines
719 B
Makefile
30 lines
719 B
Makefile
#
|
|
# Copyright (C) 2010 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
|
|
$(MAKE) -C lzma-loader clean
|
|
endef
|
|
|
|
define Image/Prepare
|
|
cat $(KDIR)/vmlinux | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
|
|
$(MAKE) -C lzma-loader \
|
|
KDIR="$(KDIR)" \
|
|
clean compile
|
|
rm -f $(KDIR)/fs_mark
|
|
touch $(KDIR)/fs_mark
|
|
$(call prepare_generic_squashfs,$(KDIR)/fs_mark)
|
|
endef
|
|
|
|
define Image/Build
|
|
./my-mkimage $(KDIR)/loader.bin $(KDIR)/root.squashfs \
|
|
$(KDIR)/fs_mark $(BIN_DIR)/$(IMG_PREFIX)-$(1).bin
|
|
endef
|
|
|
|
$(eval $(call BuildImage))
|