Radix cross Linux Build System

Cross-platform build system is designed to build distributions of different operating systems for a set of target devices

74 Commits   2 Branches   2 Tags
Index: Makefile
===================================================================
--- Makefile	(nonexistent)
+++ Makefile	(revision 5)
@@ -0,0 +1,59 @@
+
+COMPONENT_TARGETS = $(HARDWARE_NOARCH)
+
+
+include ../../../../../build-system/constants.mk
+
+
+url         = $(DOWNLOAD_SERVER)/sources/packages/a/populatefs
+
+
+versions    = 1.1
+pkgname     = populatefs
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+patches     = $(CURDIR)/patches/populatefs-1.1-sys-macros.patch
+patches    += $(CURDIR)/patches/populatefs-1.1-version.patch
+
+.NOTPARALLEL: $(patches)
+
+
+BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
+
+
+include ../../../../../build-system/core.mk
+
+
+.PHONY: download_clean
+
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n" ; \
+	 for tarball in $(tarballs) ; do \
+	   echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
+	 done ; wait
+
+$(sha1s): $(tarballs)
+	@for sha in $@ ; do \
+	   echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
+	   echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
+	   touch $$sha ; \
+	   echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
+	   sha1sum --check $$sha ; ret="$$?" ; \
+	   if [ "$$ret" == "1" ]; then \
+	     echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
+	     exit 1 ; \
+	   fi ; \
+	 done
+
+$(patches): $(sha1s)
+	@echo -e "\n======= Create Patches =======\n" ; \
+	 ( cd create-1.1-sys-macros-patch ; ./create.patch.sh ) ; \
+	 ( cd create-1.1-version-patch    ; ./create.patch.sh ) ; \
+	 echo -e "\n"
+
+download_clean:
+	@rm -f $(tarballs) $(sha1s) $(patches)
Index: create-1.1-sys-macros-patch/create.patch.sh
===================================================================
--- create-1.1-sys-macros-patch/create.patch.sh	(nonexistent)
+++ create-1.1-sys-macros-patch/create.patch.sh	(revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=1.1
+
+tar --files-from=file.list -xJvf ../populatefs-$VERSION.tar.xz
+mv populatefs-$VERSION populatefs-$VERSION-orig
+
+cp -rf ./populatefs-$VERSION-new ./populatefs-$VERSION
+
+diff -b --unified -Nr  populatefs-$VERSION-orig  populatefs-$VERSION > populatefs-$VERSION-sys-macros.patch
+
+mv populatefs-$VERSION-sys-macros.patch ../patches
+
+rm -rf ./populatefs-$VERSION
+rm -rf ./populatefs-$VERSION-orig

Property changes on: create-1.1-sys-macros-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-1.1-sys-macros-patch/file.list
===================================================================
--- create-1.1-sys-macros-patch/file.list	(nonexistent)
+++ create-1.1-sys-macros-patch/file.list	(revision 5)
@@ -0,0 +1 @@
+populatefs-1.1/src/mod_path.c
Index: create-1.1-sys-macros-patch/populatefs-1.1-new/src/mod_path.c
===================================================================
--- create-1.1-sys-macros-patch/populatefs-1.1-new/src/mod_path.c	(nonexistent)
+++ create-1.1-sys-macros-patch/populatefs-1.1-new/src/mod_path.c	(revision 5)
@@ -0,0 +1,203 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/sysmacros.h>
+#include <unistd.h>
+#include <dirent.h>
+#include <ext2fs/ext2fs.h>
+
+#include "linklist.h"
+#include "log.h"
+#include "debugfs.h"
+#include "mod_path.h"
+
+static int modPath_path_len = 0;
+
+void modPath_set_pathLen(int pathLen)
+{
+	modPath_path_len = pathLen;
+}
+
+void addPath(const char *path, int squash_uids, int squash_perms)
+{
+	size_t len;
+	char *full_name = NULL, *lnk = NULL;
+	struct dirent *file = NULL;
+	DIR *direc = NULL;
+	struct stat st;
+	int overWrite;
+	__u16 inodeType;
+
+	direc = opendir(path);
+
+	if ( !direc )
+		log_error("[Local fs opendir] Cannot open directory %s", path);
+
+	while (( file = readdir(direc)) != NULL ) {
+
+		if (( !strcmp(file->d_name, "." )) || ( !strcmp(file->d_name, ".." )))
+			continue;
+
+		len = strlen(path) + strlen( file->d_name ) + 3;
+
+		if ( full_name ) {
+			free( full_name );
+			full_name = NULL;
+		}
+
+		full_name = (char*)malloc(len + 2);
+		if ( !full_name )
+			log_error("[Local fs stat] Memory allocation error ( full_name --> %s/%s )", path, file->d_name);
+
+		memset(full_name, 0, len + 2);
+		snprintf(full_name, len, "%s/%s", path, file->d_name);
+
+		lstat(full_name, &st);
+		mode_t fmt = st.st_mode & S_IFMT;
+
+		if ( squash_uids )
+			st.st_uid = st.st_gid = 0;
+
+		if ( squash_perms )
+			st.st_mode &= ~( LINUX_S_IRWXG | LINUX_S_IRWXO );
+
+		overWrite = name_to_inode( file->d_name );
+
+		if ( st.st_nlink > 1 ) {
+			if (( lnk = linklist_add(st.st_dev, st.st_ino, full_name + modPath_path_len))) {
+
+				if ( overWrite ) {
+					log_action(ACT_RM, file->d_name, NULL, 0, 0, 0, 0, 0, 0, overWrite);
+					if ( !do_rm(file->d_name))
+						log_error("[Filesystem error] cannot rm %s/%s", log_cwd(), file->d_name);
+				}
+
+				log_action(ACT_HARDLINK, file->d_name, lnk, 0, 0, 0, 0, 0, 0, overWrite);
+				do_hardlink(lnk, file->d_name);
+				continue;
+			}
+		}
+
+		if ( overWrite )
+			inodeType = inode_mode( file->d_name );
+
+		if (( fmt == S_IFDIR ) && ( overWrite ) && ( !LINUX_S_ISDIR(inodeType)))
+			log_error("[Remote fs mismatch] %s/%s exists but isn't a directory when it should be.", log_cwd(), file->d_name);
+		else if (( fmt != S_IFDIR) && ( overWrite )) {
+			if ( LINUX_S_ISDIR(inodeType))
+				log_error("[Remote fs mismatch] %s/%s exists but is a directory when it shouldn't be.", log_cwd(), file->d_name);
+
+			if ((!LINUX_S_ISREG(inodeType)) && (!LINUX_S_ISLNK(inodeType)) &&
+			    (!LINUX_S_ISBLK(inodeType)) && (!LINUX_S_ISCHR(inodeType)) &&
+			    (!LINUX_S_ISFIFO(inodeType)) && (!LINUX_S_ISSOCK(inodeType)))
+				log_error("[Remote fs mismatch] Existing file %s/%s has unknown/unsupported type [0x%x].", log_cwd(), file->d_name);
+		}
+
+		switch ( fmt ) {
+		case S_IFDIR:         // Directory
+			log_action(ACT_MKDIR, file->d_name, NULL, 0, 0, 0, 0, 0, 0, overWrite);
+
+			if ( !overWrite )
+				if ( !do_mkdir( file->d_name ))
+					log_error("[Filesystem error] cannot mkdir %s/%s", log_cwd(), file->d_name);
+
+			log_action(ACT_CHMODE, file->d_name, NULL, st.st_mode, 0, 0, 0, 0, 0, overWrite);
+			if ( !do_chmode(file->d_name, st.st_mode))
+				log_error("[Filesystem error] Failed to chmode 0x%x for directory %s/%s", st.st_mode, log_cwd(), file->d_name);
+			log_action(ACT_CHOWN, file->d_name, NULL, 0, st.st_uid, st.st_gid, 0, 0, 0, 0);
+			if ( !do_chown(file->d_name, st.st_uid, st.st_gid))
+				log_error("[Filesystem error] Failed to chown %ld, %ld for directory %s/%s", st.st_uid, st.st_gid, log_cwd(), file->d_name);
+
+			log_action(ACT_CHDIR, file->d_name, NULL, 0, 0, 0, 0, 0, 0, 0);
+			if ( !do_chdir( file->d_name ))
+				log_error("[Filesystem error] cannot chdir to newly created %s/%s", log_cwd(), file->d_name);
+
+			addPath(full_name, squash_uids, squash_perms);
+
+			log_action(ACT_CHDIR, "..", NULL, 0, 0, 0, 0, 0, 0, 0);
+			if ( !do_chdir(".."))
+				log_error("[Filesystem error] cannot chdir to parent directory");
+			break;
+
+		case S_IFREG:         // Regular file
+
+			if ( overWrite ) {
+				log_action(ACT_RM, file->d_name, NULL, 0, 0, 0, 0, 0, 0, overWrite);
+				if ( !do_rm(file->d_name))
+					log_error("[Filesystem error] cannot rm %s/%s", log_cwd(), file->d_name);
+			}
+
+			log_action(ACT_WRITE, file->d_name, NULL, 0, 0, 0, 0, 0, 0, overWrite);
+			if ( !do_write(full_name, file->d_name))
+				log_error("[Filesystem error] cannot write %s/%s", log_cwd(), file->d_name);
+			break;
+
+		case S_IFLNK:         // Symbolic link
+
+			lnk = (char*)malloc(MAX_PATHSIZE + 2);
+			if ( !lnk )
+				log_error("[symlink] Memory allocation error (lnk)");
+			int len = readlink(full_name, lnk, MAX_PATHSIZE);
+			if ( len == -1 ) {
+				free(lnk);
+				log_error("[Local filesystem error] Cannot read destination for link %s/%s", log_cwd(), file->d_name);
+			} else lnk[len] = '\0';
+
+			if ( overWrite ) {
+				log_action(ACT_RM, file->d_name, NULL, 0, 0, 0, 0, 0, 0, overWrite);
+				if ( !do_rm(file->d_name))
+					log_error("[Filesystem error] cannot rm %s/%s", log_cwd(), file->d_name);
+			}
+
+			log_action(ACT_SYMLINK, file->d_name, lnk, 0, 0, 0, 0, 0, 0, overWrite);
+			if ( !do_symlink(lnk, file->d_name))
+				log_error("[Filesystem error] cannot symlink %s/%s --> %s", log_cwd(), file->d_name, lnk);
+
+			free(lnk);
+			break;
+
+		case S_IFBLK:           // Block device node
+		case S_IFCHR:           // Character device node
+		case S_IFSOCK:          // socket
+		case S_IFIFO:           // fifo
+
+			if ( overWrite ) {
+				log_action(ACT_RM, file->d_name, NULL, 0, 0, 0, 0, 0, 0, overWrite);
+				if ( !do_rm(file->d_name))
+					log_error("[Filesystem error] cannot rm %s/%s", log_cwd(), file->d_name);
+			}
+
+			char nodetype = ( fmt == S_IFBLK ? 'b' : ( fmt == S_IFCHR ? 'c' : ( fmt == S_IFSOCK ? 's' : 'p' )));
+			unsigned long major = 0, minor = 0;
+
+			if (( nodetype == 'b' ) || ( nodetype == 'c' )) {
+				major = (long)major(st.st_rdev);
+				minor = (long)minor(st.st_rdev);
+			}
+
+			log_action(ACT_MKNOD, file->d_name, NULL, 0, 0, 0, nodetype, major, minor, overWrite);
+			if ( !do_mknod(file->d_name, nodetype, major, minor))
+				log_error("[Filesystem error] cannot mknod %c %ld,%ld %s/%s", log_cwd(), nodetype, major, minor, log_cwd(), file->d_name);
+			break;
+		}
+
+		if ( fmt != S_IFDIR ) { // Not dir ?
+			log_action(ACT_CHMODE, file->d_name, NULL, st.st_mode, 0, 0, 0, 0, 0, overWrite);
+			if ( !do_chmode(file->d_name, st.st_mode))
+				log_error("[Filesystem error] Failed to chmode 0x%x for file %s/%s", st.st_mode, log_cwd(), file->d_name);
+			log_action(ACT_CHOWN, file->d_name, NULL, 0, st.st_uid, st.st_gid, 0, 0, 0, 0);
+			if ( !do_chown(file->d_name, st.st_uid, st.st_gid))
+				log_error("[Filesystem error] Failed to chown %ld, %ld for file %s/%s", st.st_uid, st.st_gid, log_cwd(), file->d_name);
+		}
+
+		if ( full_name ) {
+			free( full_name );
+			full_name = NULL;
+		}
+	}
+
+	closedir(direc);
+
+}
Index: create-1.1-sys-macros-patch/populatefs-1.1-new/src
===================================================================
--- create-1.1-sys-macros-patch/populatefs-1.1-new/src	(nonexistent)
+++ create-1.1-sys-macros-patch/populatefs-1.1-new/src	(revision 5)

Property changes on: create-1.1-sys-macros-patch/populatefs-1.1-new/src
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: create-1.1-sys-macros-patch/populatefs-1.1-new
===================================================================
--- create-1.1-sys-macros-patch/populatefs-1.1-new	(nonexistent)
+++ create-1.1-sys-macros-patch/populatefs-1.1-new	(revision 5)

Property changes on: create-1.1-sys-macros-patch/populatefs-1.1-new
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: create-1.1-sys-macros-patch
===================================================================
--- create-1.1-sys-macros-patch	(nonexistent)
+++ create-1.1-sys-macros-patch	(revision 5)

Property changes on: create-1.1-sys-macros-patch
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: create-1.1-version-patch/create.patch.sh
===================================================================
--- create-1.1-version-patch/create.patch.sh	(nonexistent)
+++ create-1.1-version-patch/create.patch.sh	(revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=1.1
+
+tar --files-from=file.list -xJvf ../populatefs-$VERSION.tar.xz
+mv populatefs-$VERSION populatefs-$VERSION-orig
+
+cp -rf ./populatefs-$VERSION-new ./populatefs-$VERSION
+
+diff -b --unified -Nr  populatefs-$VERSION-orig  populatefs-$VERSION > populatefs-$VERSION-version.patch
+
+mv populatefs-$VERSION-version.patch ../patches
+
+rm -rf ./populatefs-$VERSION
+rm -rf ./populatefs-$VERSION-orig

Property changes on: create-1.1-version-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-1.1-version-patch/file.list
===================================================================
--- create-1.1-version-patch/file.list	(nonexistent)
+++ create-1.1-version-patch/file.list	(revision 5)
@@ -0,0 +1 @@
+populatefs-1.1/Makefile
Index: create-1.1-version-patch/populatefs-1.1-new/Makefile
===================================================================
--- create-1.1-version-patch/populatefs-1.1-new/Makefile	(nonexistent)
+++ create-1.1-version-patch/populatefs-1.1-new/Makefile	(revision 5)
@@ -0,0 +1,108 @@
+DESTDIR?=
+prefix?=/usr
+bindir?=${prefix}/bin
+libdir?=${prefix}/lib
+includedir?=${prefix}/include
+CC?=gcc
+AR?=ar
+RANLIB?=ranlib
+CP=cp
+LN_S?=ln -s
+RM?=rm -f
+MKDIR?=mkdir
+RMDIR?=rmdir
+INSTALL?=install
+STRIP?=strip -s
+CFLAGS?= -fPIC -Wall
+EXTRA_CFLAGS?= -DHAVE_GETOPT_H=1
+INCLUDES?=
+LDFLAGS?= -L/usr/lib
+EXTRA_LDFLAGS?=
+LIBS= -lext2fs -lm
+EXTRA_LIBS?=
+EXTRAVERSION?=
+
+##################################################
+#                                                #
+#  Don't go changing stuff further this point..  #
+#  Unless, you really know what you are doing..  #
+#                                                #
+##################################################
+
+VERSION_MAJOR=1
+VERSION_MINOR=1
+VERSION=$(VERSION_MAJOR).$(VERSION_MINOR)
+LIBPOPULATEFS=libpopulatefs
+LIBPOPULATEFS_DEPENDS=src/debugfs.o src/util.o src/linklist.o src/mod_file.o src/mod_path.o src/log.o
+LDADD_LIBPOPULATEFS= -lpopulatefs
+OBJS=src/util.o src/log.o src/linklist.o src/debugfs.o src/mod_path.o src/mod_file.o
+HDRS=src/log.h src/util.h src/linklist.h src/debugfs.h src/mod_path.h src/mod_file.h
+
+all: $(HDRS) $(OBJS) src/main.o src/$(LIBPOPULATEFS).a src/$(LIBPOPULATEFS).so.$(VERSION) src/populatefs
+
+src/populatefs: src/main.o src/$(LIBPOPULATEFS).a $(HDRS)
+	$(CC) $< -o $@ -L./src $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Bstatic $(LDADD_LIBPOPULATEFS) -Wl,-Bdynamic $(LIBS) $(EXTRA_LIBS)
+
+src/%.o: src/%.c
+	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DPOPULATEFS_VERSION="\"$(VERSION)\"" -DPOPULATEFS_EXTRAVERSION="\"$(EXTRAVERSION)\"" $(INCLUDES) -c $< -o $@
+
+src/$(LIBPOPULATEFS).a: $(LIBPOPULATEFS_DEPENDS)
+	$(AR)	rcsv $@	$(LIBPOPULATEFS_DEPENDS)
+	$(RANLIB) $@
+
+src/$(LIBPOPULATEFS).so.$(VERSION): $(LIBPOPULATEFS_DEPENDS)
+	$(CC) -shared -Wl,-soname,$(LIBPOPULATEFS).so -Wl,-soname,$(LIBPOPULATEFS).so.$(VERSION_MAJOR) -o $@	$(LIBPOPULATEFS_DEPENDS)
+
+install-bin: src/populatefs
+	$(MKDIR) -p $(DESTDIR)/$(bindir)
+	$(INSTALL) src/populatefs $(DESTDIR)/$(bindir)/
+	$(STRIP) $(DESTDIR)/$(bindir)/populatefs
+
+install-headers: $(HDRS)
+	$(MKDIR) -p $(DESTDIR)/$(includedir)/populatefs
+	$(CP) src/log.h $(DESTDIR)/$(includedir)/populatefs/
+	$(CP) src/util.h $(DESTDIR)/$(includedir)/populatefs/
+	$(CP) src/linklist.h $(DESTDIR)/$(includedir)/populatefs/
+	$(CP) src/debugfs.h $(DESTDIR)/$(includedir)/populatefs/
+	$(CP) src/mod_path.h $(DESTDIR)/$(includedir)/populatefs/
+	$(CP) src/mod_file.h $(DESTDIR)/$(includedir)/populatefs/
+
+install-libs: src/$(LIBPOPULATEFS).so.$(VERSION)
+	$(MKDIR) -p $(DESTDIR)/$(libdir)
+	$(RM) $(DESTDIR)/$(libdir)/$(LIBPOPULATEFS).so.$(VERSION_MAJOR) \
+		$(DESTDIR)/$(libdir)//$(LIBPOPULATEFS).so
+	$(INSTALL) src/$(LIBPOPULATEFS).so.$(VERSION) $(DESTDIR)/$(libdir)/
+	$(STRIP) $(DESTDIR)/$(libdir)/$(LIBPOPULATEFS).so.$(VERSION)
+	$(LN_S) $(LIBPOPULATEFS).so.$(VERSION) $(DESTDIR)/$(libdir)/$(LIBPOPULATEFS).so.$(VERSION_MAJOR)
+	$(LN_S) $(LIBPOPULATEFS).so.$(VERSION) $(DESTDIR)/$(libdir)/$(LIBPOPULATEFS).so
+
+install-static-libs: src/$(LIBPOPULATEFS).a
+	$(MKDIR) -p $(DESTDIR)/$(libdir)
+	$(CP) src/$(LIBPOPULATEFS).a $(DESTDIR)/$(libdir)/
+
+uninstall-bin:
+	$(RM) $(DESTDIR)/$(bindir)/populatefs
+
+uninstall-headers:
+	$(RM) $(DESTDIR)/$(includedir)/populatefs/log.h
+	$(RM) $(DESTDIR)/$(includedir)/populatefs/util.h
+	$(RM) $(DESTDIR)/$(includedir)/populatefs/linklist.h
+	$(RM) $(DESTDIR)/$(includedir)/populatefs/debugfs.h
+	$(RM) $(DESTDIR)/$(includedir)/populatefs/mod_path.h
+	$(RM) $(DESTDIR)/$(includedir)/populatefs/mod_file.h
+	$(RMDIR) --ignore-fail-on-non-empty $(DESTDIR)/$(includedir)/populatefs
+
+uninstall-libs:
+	$(RM) $(DESTDIR)/$(libdir)/$(LIBPOPULATEFS).so*
+	$(RMDIR) --ignore-fail-on-non-empty $(DESTDIR)/$(libdir)/populatefs
+
+uninstall-static-libs:
+	$(RM) $(DESTDIR)/$(libdir)/populatefs/$(LIBPOPULATEFS).a
+	$(RMDIR) --ignore-fail-on-non-empty $(DESTDIR)/$(libdir)/populatefs
+
+install: all install-bin install-headers install-libs
+
+uninstall: uninstall-bin uninstall-libs
+
+clean:
+	$(RM) src/*.o src/*.a src/*.so* src/populatefs
Index: create-1.1-version-patch/populatefs-1.1-new
===================================================================
--- create-1.1-version-patch/populatefs-1.1-new	(nonexistent)
+++ create-1.1-version-patch/populatefs-1.1-new	(revision 5)

Property changes on: create-1.1-version-patch/populatefs-1.1-new
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: create-1.1-version-patch
===================================================================
--- create-1.1-version-patch	(nonexistent)
+++ create-1.1-version-patch	(revision 5)

Property changes on: create-1.1-version-patch
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: patches/README
===================================================================
--- patches/README	(nonexistent)
+++ patches/README	(revision 5)
@@ -0,0 +1,6 @@
+
+/* begin *
+
+   populatefs-1.1-version.patch - Set version according to the latest snapshot of source code.
+
+ * end */
Index: patches
===================================================================
--- patches	(nonexistent)
+++ patches	(revision 5)

Property changes on: patches
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~