summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-27 00:35:46 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-27 00:35:46 +0000
commit02cdebbb91a33d8e24da1c94a9d93ac39be168a7 (patch)
tree58dcdc6b5eac875892aadbea0214c286939381fe /include
parented5ef674d100ca0ffa8bc00160718f69af5515c3 (diff)
credit where credit is due
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4091 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r--include/host-build.mk6
-rw-r--r--include/image.mk6
-rw-r--r--include/kernel-build.mk6
-rw-r--r--include/kernel.mk6
-rw-r--r--include/modules-2.4.mk6
-rw-r--r--include/modules-2.6.mk6
-rw-r--r--include/modules.mk6
-rw-r--r--include/netfilter.mk6
-rw-r--r--include/package.mk6
-rw-r--r--include/target.mk6
-rw-r--r--include/verbose.mk7
11 files changed, 66 insertions, 1 deletions
diff --git a/include/host-build.mk b/include/host-build.mk
index 0d103e2a0..43c83142d 100644
--- a/include/host-build.mk
+++ b/include/host-build.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
ifneq ($(strip $(PKG_CAT)),)
ifeq ($(PKG_CAT),unzip)
UNPACK=unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE)
diff --git a/include/image.mk b/include/image.mk
index ca0d688f1..95accd6e1 100644
--- a/include/image.mk
+++ b/include/image.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
ifneq ($(CONFIG_BIG_ENDIAN),y)
diff --git a/include/kernel-build.mk b/include/kernel-build.mk
index 3a455a812..6fae4acc5 100644
--- a/include/kernel-build.mk
+++ b/include/kernel-build.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
-include $(INCLUDE_DIR)/modules-$(KERNEL).mk
LINUX_SOURCE:=linux-$(LINUX_VERSION).tar.bz2
diff --git a/include/kernel.mk b/include/kernel.mk
index b40f65f48..2c5d09377 100644
--- a/include/kernel.mk
+++ b/include/kernel.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
ifeq ($(DUMP),1)
KERNEL:=<KERNEL>
BOARD:=<BOARD>
diff --git a/include/modules-2.4.mk b/include/modules-2.4.mk
index 325cf16bc..f8d966f40 100644
--- a/include/modules-2.4.mk
+++ b/include/modules-2.4.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
include $(INCLUDE_DIR)/netfilter.mk
# Networking
diff --git a/include/modules-2.6.mk b/include/modules-2.6.mk
index 6e8a2ded7..c98e4ea8a 100644
--- a/include/modules-2.6.mk
+++ b/include/modules-2.6.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
NF_2_6:=1
include $(INCLUDE_DIR)/netfilter.mk
diff --git a/include/modules.mk b/include/modules.mk
index 026c4a610..d20fd41bb 100644
--- a/include/modules.mk
+++ b/include/modules.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
include $(TOPDIR)/include/kernel.mk
define KernelPackage/ide-core
diff --git a/include/netfilter.mk b/include/netfilter.mk
index 66cb747de..236d4b242 100644
--- a/include/netfilter.mk
+++ b/include/netfilter.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
# $Id: netfilter.mk 2411 2005-11-11 03:41:43Z nico $
ifeq ($(NF_2_6),1)
diff --git a/include/package.mk b/include/package.mk
index 0996574d2..bf2376dcd 100644
--- a/include/package.mk
+++ b/include/package.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
ifneq ($(DUMP),)
all: dumpinfo
else
diff --git a/include/target.mk b/include/target.mk
index afdf5d8ae..5a87ab84d 100644
--- a/include/target.mk
+++ b/include/target.mk
@@ -1,3 +1,9 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
define kernel_template
ifeq ($(CONFIG_LINUX_$(3)),y)
KERNEL:=$(1)
diff --git a/include/verbose.mk b/include/verbose.mk
index 6d7c7ef6c..98dfd5632 100644
--- a/include/verbose.mk
+++ b/include/verbose.mk
@@ -1,4 +1,9 @@
-# OpenWrt.org 2006
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
# $Id:$
ifndef KBUILD_VERBOSE