diff options
author | Dirk von Suchodoletz | 2006-08-16 00:58:42 +0200 |
---|---|---|
committer | Dirk von Suchodoletz | 2006-08-16 00:58:42 +0200 |
commit | 91635afc52c96467e0e994d03284ab65db40526f (patch) | |
tree | a650865536bb684d9478b771d6272dccd9e93876 /Makefile | |
parent | Simple install mechanism for directory structure setup (make install) (diff) | |
download | core-91635afc52c96467e0e994d03284ab65db40526f.tar.gz core-91635afc52c96467e0e994d03284ab65db40526f.tar.xz core-91635afc52c96467e0e994d03284ab65db40526f.zip |
Extended configuration mechanism (get tgz files instead of simple
machine-setup for advanced config), tested with normal toolset and
busybox, small bugfixes like: fixed duplicate entries to
machine-setup, small ash-sh related bug, ...
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@300 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -6,7 +6,7 @@ # # Copyright: (c) 2006 - opendiskless.org project # -# Version: 0.0.1b +# Version: 0.0.1c tarball: @echo "Creating tar ball " @@ -27,11 +27,15 @@ install: @cp -a initrd/distro-specs/* /usr/share/opendiskless/distro-specs @cp installer/default_files/machine-setup.default \ /usr/share/opendiskless/templates - @echo -e "#!/bin/sh\n#\n# this script allows the local admin to \ -extend the\n# capabilities at the beginning of the initramfs" \ + @echo -e "#!/bin/sh\n#\n# This script allows the local admin to \ +extend the\n# capabilities at the beginning of the initramfs. The toolset \ +is rather\n# restricted and you have to keep in mind that stage4 rootfs \ +has the\n# prefix '/mnt'." \ > /var/lib/opendiskless/config/default/initramfs/preinit.local - @echo -e "#!/bin/sh\n#\n# this script allows the local admin to \ -extend the\n# capabilities at the end of the initramfs" \ + @echo -e "#!/bin/sh\n#\n# This script allows the local admin to \ +extend the\n# capabilities at the end of the initramfs. The toolset \ +is rather\n# restricted and you have to keep in mind that stage4 rootfs \ +has the\n# prefix '/mnt'." \ > /var/lib/opendiskless/config/default/initramfs/postinit.local @chmod u+x /var/lib/opendiskless/config/default/initramfs/*init.local |