aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/adm8668/image/lzma-loader/.svn
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/adm8668/image/lzma-loader/.svn')
-rw-r--r--target/linux/adm8668/image/lzma-loader/.svn/entries65
-rw-r--r--target/linux/adm8668/image/lzma-loader/.svn/text-base/Makefile.svn-base41
2 files changed, 106 insertions, 0 deletions
diff --git a/target/linux/adm8668/image/lzma-loader/.svn/entries b/target/linux/adm8668/image/lzma-loader/.svn/entries
new file mode 100644
index 0000000..9888703
--- /dev/null
+++ b/target/linux/adm8668/image/lzma-loader/.svn/entries
@@ -0,0 +1,65 @@
+10
+
+dir
+36060
+svn://svn.openwrt.org/openwrt/trunk/target/linux/adm8668/image/lzma-loader
+svn://svn.openwrt.org/openwrt
+
+
+
+2011-01-27T21:49:56.834245Z
+25175
+florian
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+3c298f89-4303-0410-b956-a3cf2f4a3e73
+
+src
+dir
+
+Makefile
+file
+
+
+
+
+2013-03-17T12:12:22.000000Z
+cd1147ac8df9447a2959ef1e785ca00c
+2010-11-06T18:54:20.513313Z
+23900
+florian
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+1002
+
diff --git a/target/linux/adm8668/image/lzma-loader/.svn/text-base/Makefile.svn-base b/target/linux/adm8668/image/lzma-loader/.svn/text-base/Makefile.svn-base
new file mode 100644
index 0000000..f6bc7ce
--- /dev/null
+++ b/target/linux/adm8668/image/lzma-loader/.svn/text-base/Makefile.svn-base
@@ -0,0 +1,41 @@
+#
+# 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
+
+PKG_NAME := loader
+PKG_VERSION := 0.05
+
+PKG_BUILD_DIR := $(KDIR)/$(PKG_NAME)-$(PKG_VERSION)$(LOADER_TYPE)
+
+$(PKG_BUILD_DIR)/.prepared:
+ mkdir $(PKG_BUILD_DIR)
+ $(CP) ./src/* $(PKG_BUILD_DIR)/
+ touch $@
+
+$(PKG_BUILD_DIR)/lzma.elf: $(PKG_BUILD_DIR)/.prepared $(PKG_BUILD_DIR)/vmlinux.lzma
+ PATH="$(TARGET_PATH)" $(MAKE) -C $(PKG_BUILD_DIR) \
+ CC="$(TARGET_CC)" CROSS_COMPILE="$(TARGET_CROSS)"
+
+$(PKG_BUILD_DIR)/vmlinux.lzma: $(KDIR)/vmlinux.lzma
+ $(CP) $< $@
+
+$(KDIR)/loader$(LOADER_TYPE).elf: $(PKG_BUILD_DIR)/lzma.elf
+ $(CP) $< $@
+
+$(KDIR)/loader$(LOADER_TYPE).bin: $(PKG_BUILD_DIR)/lzma.bin
+ $(CP) $< $@
+
+download:
+prepare: $(PKG_BUILD_DIR)/.prepared
+compile: $(KDIR)/loader$(LOADER_TYPE).elf $(KDIR)/loader$(LOADER_TYPE).bin
+install:
+
+clean:
+ rm -rf $(PKG_BUILD_DIR)
+ rm -f $(KDIR)/loader.elf
+ rm -f $(KDIR)/loader.bin