Displaying 5 results from an estimated 5 matches for "_usr_".
Did you mean:
_use_
2006 Apr 17
0
[PATCH] klibc: rebuild cpio image when content changes
...--- a/usr/Kbuild
+++ b/usr/Kbuild
@@ -8,21 +8,38 @@ export KLIBCINC := $(srctree)/$(src)/inc
export KLIBCOBJ := $(objtree)/$(obj)/klibc
CONFIG_KLIBC := 1
+klibc-subdir := klibc
+usr-subdirs := kinit utils dash gzip
+subdir- := $(klibc-subdir) $(usr-subdirs)
+
+usr-subdirs := $(addprefix _usr_,$(usr-subdirs))
+klibc-subdir := $(addprefix _usr_,$(klibc-subdir))
+
# Klibc binaries
ifdef CONFIG_KLIBC
klibc := -f $(srctree)/scripts/Kbuild.klibc obj
+
+# .initramfs_data.cpio.gz.d is used to identify all files included
+# in initramfs and to detect if any files are added/removed.
+# Removed...
2006 Jun 26
0
[klibc 19/43] klibc basic build infrastructure
...build
@@ -0,0 +1,75 @@
+#
+# kbuild file for usr/ - including initramfs image and klibc
+#
+
+CONFIG_KLIBC := 1
+
+include-subdir := include
+klibc-subdir := klibc
+usr-subdirs := kinit utils dash gzip
+subdir- := $(include-subdir) $(klibc-subdir) $(usr-subdirs)
+
+usr-subdirs := $(addprefix _usr_,$(usr-subdirs))
+klibc-subdir := $(addprefix _usr_,$(klibc-subdir))
+
+# Klibc binaries
+ifdef CONFIG_KLIBC
+
+# .initramfs_data.cpio.gz.d is used to identify all files included
+# in initramfs and to detect if any files are added/removed.
+# Removed files are identified by directory timestamp bein...
2007 Aug 21
1
[git patch] dmesg + fstype ocfs2
...git:
git clone git://git.kernel.org/pub/scm/libs/klibc/klibc.git <workdir>
diff --git a/usr/Kbuild b/usr/Kbuild
index f874f51..890811c 100644
--- a/usr/Kbuild
+++ b/usr/Kbuild
@@ -12,7 +12,7 @@ subdir- := $(include-subdir) $(klibc-subdir) $(usr-subdirs)
usr-subdirs := $(addprefix _usr_,$(usr-subdirs))
klibc-subdir := $(addprefix _usr_,$(klibc-subdir))
-# Klibc binaries
+# klibc binaries
ifdef CONFIG_KLIBC
# .initramfs_data.cpio.gz.d is used to identify all files included
2006 Apr 17
0
[PATCH] kbuild: support single targets for klibc and klibc programs
...fs image and klibc
#
-# klibc definitions - to be moved to top-level Makefile later
-export KLIBCSRC := $(srctree)/$(src)/klibc
-export KLIBCINC := $(src)/include
-export KLIBCOBJ := $(objtree)/$(obj)/klibc
CONFIG_KLIBC := 1
klibc-subdir := klibc
@@ -17,7 +13,6 @@ klibc-subdir := $(addprefix _usr_,$(klib
# Klibc binaries
ifdef CONFIG_KLIBC
-klibc := -f $(srctree)/scripts/Kbuild.klibc obj
# .initramfs_data.cpio.gz.d is used to identify all files included
# in initramfs and to detect if any files are added/removed.
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In
particular, the patchset has been reorganized so as not to break
git-bisect.
Additionally, this updates the patch base to 2.6.17-git12
(d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main
difference on the klibc side is removal of obsolete code.
This is also available as a git tree at: