change log for rtems (2010-07-30)

rtems-vc at rtems.org rtems-vc at rtems.org
Fri Jul 30 09:10:43 UTC 2010


 *ralf*:
2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>

	* configure.ac: Add AC_PROG_LN_S.
	Add AC_PATH_PROG([PAX]).
	Add AM_CONDITIONAL(TARTESTS).

M  1.226  testsuites/libtests/ChangeLog
M   1.53  testsuites/libtests/configure.ac

diff -u rtems/testsuites/libtests/ChangeLog:1.225 rtems/testsuites/libtests/ChangeLog:1.226
--- rtems/testsuites/libtests/ChangeLog:1.225	Fri Jul 30 01:13:06 2010
+++ rtems/testsuites/libtests/ChangeLog	Fri Jul 30 03:42:37 2010
@@ -1,5 +1,8 @@
 2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* configure.ac: Add AC_PROG_LN_S.
+	Add AC_PATH_PROG([PAX]).
+	Add AM_CONDITIONAL(TARTESTS).
 	* tar01/Makefile.am, tar02/Makefile.am:
 	Eliminate stamp-filesystem.
 

diff -u rtems/testsuites/libtests/configure.ac:1.52 rtems/testsuites/libtests/configure.ac:1.53
--- rtems/testsuites/libtests/configure.ac:1.52	Tue Jul 27 13:16:49 2010
+++ rtems/testsuites/libtests/configure.ac	Fri Jul 30 03:42:37 2010
@@ -28,6 +28,10 @@
 RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
 RTEMS_CHECK_CXX(RTEMS_BSP)
 
+AC_PROG_LN_S
+AC_PATH_PROG([PAX],[pax])
+
+AM_CONDITIONAL(TARTESTS,test "$as_ln_s" = "ln -s" && test -n "$PAX")
 
 AM_CONDITIONAL(HAS_CXX,test "$rtems_cv_HAS_CPLUSPLUS" = "yes")
 


 *ralf*:
2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>

	* tar01/Makefile.am:
	Apply $LN_S, $PAX. Use subshell for tarball creation.
	Don't add initial_fs to CLEANFILES.
	* tar02/Makefile.am:
	Apply $LN_S, $PAX. Use subshell for tarball creation.

M  1.227  testsuites/libtests/ChangeLog
M    1.9  testsuites/libtests/tar01/Makefile.am
M    1.8  testsuites/libtests/tar02/Makefile.am

diff -u rtems/testsuites/libtests/ChangeLog:1.226 rtems/testsuites/libtests/ChangeLog:1.227
--- rtems/testsuites/libtests/ChangeLog:1.226	Fri Jul 30 03:42:37 2010
+++ rtems/testsuites/libtests/ChangeLog	Fri Jul 30 03:46:13 2010
@@ -1,5 +1,13 @@
 2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* tar01/Makefile.am:
+	Apply $LN_S, $PAX. Use subshell for tarball creation.
+	Don't add initial_fs to CLEANFILES.
+	* tar02/Makefile.am:
+	Apply $LN_S, $PAX. Use subshell for tarball creation.
+
+2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>
+
 	* configure.ac: Add AC_PROG_LN_S.
 	Add AC_PATH_PROG([PAX]).
 	Add AM_CONDITIONAL(TARTESTS).

diff -u rtems/testsuites/libtests/tar01/Makefile.am:1.8 rtems/testsuites/libtests/tar01/Makefile.am:1.9
--- rtems/testsuites/libtests/tar01/Makefile.am:1.8	Fri Jul 30 01:13:06 2010
+++ rtems/testsuites/libtests/tar01/Makefile.am	Fri Jul 30 03:46:13 2010
@@ -40,10 +40,9 @@
 	$(MKDIR_P) initial_fs/home
 	(echo "This is a test of loading an RTEMS filesystem from an" ; \
 	echo "initial tar image.") >initial_fs/home/test_file
-	cd initial_fs && ln -s home/test_file symlink
-	cd initial_fs ; pax -w -f ../initial_filesystem.tar home symlink
+	(cd initial_fs; \
+	$(LN_S) home/test_file symlink; \ 
+	$(PAX) -w -f ../initial_filesystem.tar home symlink)
 CLEANFILES += initial_filesystem.tar
 
-CLEANFILES += initial_fs
-
 include $(top_srcdir)/../automake/local.am

diff -u rtems/testsuites/libtests/tar02/Makefile.am:1.7 rtems/testsuites/libtests/tar02/Makefile.am:1.8
--- rtems/testsuites/libtests/tar02/Makefile.am:1.7	Fri Jul 30 01:13:06 2010
+++ rtems/testsuites/libtests/tar02/Makefile.am	Fri Jul 30 03:46:13 2010
@@ -40,8 +40,9 @@
 	$(MKDIR_P) initial_fs/home
 	(echo "This is a test of loading an RTEMS filesystem from an" ; \
 	echo "initial tar image.") >initial_fs/home/test_file
-	cd initial_fs && ln -s home/test_file symlink
-	cd initial_fs ; pax -w -f ../initial_filesystem.tar home symlink
+	(cd initial_fs; \
+	$(LN_S) home/test_file symlink
+	$(PAX) -w -f ../initial_filesystem.tar home symlink)
 CLEANFILES += initial_filesystem.tar
 
 include $(top_srcdir)/../automake/local.am


 *ralf*:
Fix typo.

M   1.10  testsuites/libtests/tar01/Makefile.am
M    1.9  testsuites/libtests/tar02/Makefile.am

diff -u rtems/testsuites/libtests/tar01/Makefile.am:1.9 rtems/testsuites/libtests/tar01/Makefile.am:1.10
--- rtems/testsuites/libtests/tar01/Makefile.am:1.9	Fri Jul 30 03:46:13 2010
+++ rtems/testsuites/libtests/tar01/Makefile.am	Fri Jul 30 03:53:58 2010
@@ -41,7 +41,7 @@
 	(echo "This is a test of loading an RTEMS filesystem from an" ; \
 	echo "initial tar image.") >initial_fs/home/test_file
 	(cd initial_fs; \
-	$(LN_S) home/test_file symlink; \ 
+	$(LN_S) home/test_file symlink; \
 	$(PAX) -w -f ../initial_filesystem.tar home symlink)
 CLEANFILES += initial_filesystem.tar
 

diff -u rtems/testsuites/libtests/tar02/Makefile.am:1.8 rtems/testsuites/libtests/tar02/Makefile.am:1.9
--- rtems/testsuites/libtests/tar02/Makefile.am:1.8	Fri Jul 30 03:46:13 2010
+++ rtems/testsuites/libtests/tar02/Makefile.am	Fri Jul 30 03:53:58 2010
@@ -41,7 +41,7 @@
 	(echo "This is a test of loading an RTEMS filesystem from an" ; \
 	echo "initial tar image.") >initial_fs/home/test_file
 	(cd initial_fs; \
-	$(LN_S) home/test_file symlink
+	$(LN_S) home/test_file symlink; \
 	$(PAX) -w -f ../initial_filesystem.tar home symlink)
 CLEANFILES += initial_filesystem.tar
 


 *ralf*:
2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>

	* tar01/Makefile.am, tar02/Makefile.am: Apply TARTESTS.

M  1.228  testsuites/libtests/ChangeLog
M   1.11  testsuites/libtests/tar01/Makefile.am
M   1.10  testsuites/libtests/tar02/Makefile.am

diff -u rtems/testsuites/libtests/ChangeLog:1.227 rtems/testsuites/libtests/ChangeLog:1.228
--- rtems/testsuites/libtests/ChangeLog:1.227	Fri Jul 30 03:46:13 2010
+++ rtems/testsuites/libtests/ChangeLog	Fri Jul 30 03:56:09 2010
@@ -1,5 +1,9 @@
 2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* tar01/Makefile.am, tar02/Makefile.am: Apply TARTESTS.
+
+2010-07-30	Ralf Corsépius <ralf.corsepius at rtems.org>
+
 	* tar01/Makefile.am:
 	Apply $LN_S, $PAX. Use subshell for tarball creation.
 	Don't add initial_fs to CLEANFILES.

diff -u rtems/testsuites/libtests/tar01/Makefile.am:1.10 rtems/testsuites/libtests/tar01/Makefile.am:1.11
--- rtems/testsuites/libtests/tar01/Makefile.am:1.10	Fri Jul 30 03:53:58 2010
+++ rtems/testsuites/libtests/tar01/Makefile.am	Fri Jul 30 03:56:09 2010
@@ -4,6 +4,7 @@
 
 CLEANFILES =
 
+if TARTESTS
 rtems_tests_PROGRAMS = tar01
 tar01_SOURCES = init.c ../../psxtests/psxfile01/test_cat.c \
   initial_filesystem_tar.c initial_filesystem_tar.h
@@ -11,11 +12,13 @@
 BUILT_SOURCES = initial_filesystem_tar.c initial_filesystem_tar.h
 
 dist_rtems_tests_DATA = tar01.scn
+endif TARTESTS
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
+if TARTESTS
 AM_CPPFLAGS += -I$(top_srcdir)/include
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 AM_CPPFLAGS += -I$(top_srcdir)/../psxtests/include
@@ -44,5 +47,6 @@
 	$(LN_S) home/test_file symlink; \
 	$(PAX) -w -f ../initial_filesystem.tar home symlink)
 CLEANFILES += initial_filesystem.tar
+endif TARTESTS
 
 include $(top_srcdir)/../automake/local.am

diff -u rtems/testsuites/libtests/tar02/Makefile.am:1.9 rtems/testsuites/libtests/tar02/Makefile.am:1.10
--- rtems/testsuites/libtests/tar02/Makefile.am:1.9	Fri Jul 30 03:53:58 2010
+++ rtems/testsuites/libtests/tar02/Makefile.am	Fri Jul 30 03:56:09 2010
@@ -4,6 +4,7 @@
 
 CLEANFILES =
 
+if TARTESTS
 rtems_tests_PROGRAMS = tar02
 tar02_SOURCES = init.c ../../psxtests/psxfile01/test_cat.c \
   initial_filesystem_tar.c initial_filesystem_tar.h
@@ -11,11 +12,13 @@
 BUILT_SOURCES = initial_filesystem_tar.c initial_filesystem_tar.h
 
 dist_rtems_tests_DATA = tar02.scn
+endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
+if TARTESTS
 AM_CPPFLAGS += -I$(top_srcdir)/include
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 AM_CPPFLAGS += -I$(top_srcdir)/../psxtests/include
@@ -44,5 +47,6 @@
 	$(LN_S) home/test_file symlink; \
 	$(PAX) -w -f ../initial_filesystem.tar home symlink)
 CLEANFILES += initial_filesystem.tar
+endif TARTESTS
 
 include $(top_srcdir)/../automake/local.am



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20100730/8b3caa6d/attachment.html>


More information about the vc mailing list