From dc60cc1bb950870269252135186e69d2ba4db994 Mon Sep 17 00:00:00 2001 From: rjones Date: Thu, 19 Mar 2009 19:59:13 +0000 Subject: [PATCH] Added examples subdirectory. --- .cvsignore | 1 + Makefile.am | 10 ++++++++-- configure.ac | 7 ++----- examples/.cvsignore | 2 ++ examples/Makefile.am | 21 +++++++++++++++++++++ febootstrap.pod | 2 +- 6 files changed, 35 insertions(+), 8 deletions(-) create mode 100644 examples/Makefile.am diff --git a/.cvsignore b/.cvsignore index 92eff90..9abf25a 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,5 +1,6 @@ febootstrap*.8 febootstrap*.txt +febootstrap-*.tar.gz Makefile.in Makefile aclocal.m4 diff --git a/Makefile.am b/Makefile.am index 61c8172..2c7cfcc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,6 +17,8 @@ # # Written by Richard W.M. Jones +SUBDIRS = examples + bin_SCRIPTS = febootstrap febootstrap-to-initramfs febootstrap: febootstrap.sh @@ -66,6 +68,10 @@ febootstrap-fix-root.txt: febootstrap-fix-root.pod endif EXTRA_DIST = \ - febootstrap.8 febootstrap.txt \ + fakechroot-2.8-relchroot.patch \ + febootstrap.8 febootstrap.txt febootstrap.pod \ febootstrap-to-initramfs.8 febootstrap-to-initramfs.txt \ - febootstrap-fix-root.8 febootstrap-fix-root.txt + febootstrap-to-initramfs.pod \ + febootstrap-fix-root.8 febootstrap-fix-root.txt \ + febootstrap-fix-root.pod \ + febootstrap.sh febootstrap-to-initramfs.sh diff --git a/configure.ac b/configure.ac index 9df1cc4..48bb839 100644 --- a/configure.ac +++ b/configure.ac @@ -17,12 +17,9 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dnl dnl Written by Richard W.M. Jones -AC_INIT(febootstrap,1.0) +AC_INIT(febootstrap,0.8) AM_INIT_AUTOMAKE -AC_PROG_CC -AM_PROG_CC_C_O - AC_CHECK_PROG(PERLDOC,[perldoc],[perldoc],[no]) if test "x$PERLDOC" = "xno" ; then AC_MSG_WARN([perldoc not found - install perl to make man pages]) @@ -45,5 +42,5 @@ if test "x$YUM" = "xno" ; then fi AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([Makefile examples/Makefile]) AC_OUTPUT diff --git a/examples/.cvsignore b/examples/.cvsignore index d9e4201..dd87bfc 100644 --- a/examples/.cvsignore +++ b/examples/.cvsignore @@ -1,3 +1,5 @@ +Makefile.in +Makefile minimal minimal-initrd.img vmlinuz diff --git a/examples/Makefile.am b/examples/Makefile.am new file mode 100644 index 0000000..dae53af --- /dev/null +++ b/examples/Makefile.am @@ -0,0 +1,21 @@ +# febootstrap Makefile.am +# (C) Copyright 2009 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +# Written by Richard W.M. Jones + +EXTRA_DIST = \ + README minimal-filesystem.sh diff --git a/febootstrap.pod b/febootstrap.pod index b579799..a610f88 100644 --- a/febootstrap.pod +++ b/febootstrap.pod @@ -11,7 +11,7 @@ febootstrap - Bootstrap a basic Fedora system (like Debian debootstrap) febootstrap fedora-10 /tmp/f10 febootstrap rawhide /tmp/rawhide febootstrap rawhide /tmp/rawhide http://mymirror/rawhide/x86_64/os - febootstrap --groupinstall="Mail Server" rawhide /tmp/rawhide + febootstrap --groupinstall="Mail Server" fedora-10 /tmp/mailserver =head1 DESCRIPTION -- 1.8.3.1