aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/at91/image/dfboot/.svn
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/at91/image/dfboot/.svn')
-rw-r--r--target/linux/at91/image/dfboot/.svn/entries65
-rw-r--r--target/linux/at91/image/dfboot/.svn/text-base/Makefile.svn-base35
2 files changed, 100 insertions, 0 deletions
diff --git a/target/linux/at91/image/dfboot/.svn/entries b/target/linux/at91/image/dfboot/.svn/entries
new file mode 100644
index 0000000..2040291
--- /dev/null
+++ b/target/linux/at91/image/dfboot/.svn/entries
@@ -0,0 +1,65 @@
+10
+
+dir
+36060
+svn://svn.openwrt.org/openwrt/trunk/target/linux/at91/image/dfboot
+svn://svn.openwrt.org/openwrt
+
+
+
+2009-12-25T12:21:47.678098Z
+18929
+nbd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+3c298f89-4303-0410-b956-a3cf2f4a3e73
+
+src
+dir
+
+Makefile
+file
+
+
+
+
+2013-03-17T12:13:05.000000Z
+2c1613d916337a0bf7b197948460c97d
+2009-10-29T15:48:34.651341Z
+18206
+florian
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+751
+
diff --git a/target/linux/at91/image/dfboot/.svn/text-base/Makefile.svn-base b/target/linux/at91/image/dfboot/.svn/text-base/Makefile.svn-base
new file mode 100644
index 0000000..91a603d
--- /dev/null
+++ b/target/linux/at91/image/dfboot/.svn/text-base/Makefile.svn-base
@@ -0,0 +1,35 @@
+#
+# Copyright (C) 2006 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)/kernel.mk
+
+PKG_NAME:=dfboot
+PKG_VERSION:=0.1
+PKG_RELEASE:=1
+
+PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
+
+include $(INCLUDE_DIR)/package.mk
+
+define Build/Prepare
+ mkdir -p $(PKG_BUILD_DIR)
+ $(CP) ./src/* $(PKG_BUILD_DIR)/
+endef
+
+define Build/Compile
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ LDFLAGS="$(LIBGCC_S)"
+endef
+
+define Build/InstallDev
+ dd if=$(PKG_BUILD_DIR)/binary/dfboot.bin of=$(PKG_BUILD_DIR)/binary/dfboot.block bs=32k count=1 conv=sync
+endef
+
+$(eval $(call Build/DefaultTargets))