diff options
author | Oliver Tappe | 2008-08-18 21:01:19 +0200 |
---|---|---|
committer | Oliver Tappe | 2008-08-18 21:01:19 +0200 |
commit | 7605bf0e52ad79a1bbb100e5a7d2f88d124dd3db (patch) | |
tree | 42a4393f7c5518dcb41768c3efa050a584164aa1 /Makefile | |
parent | git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2048 95ad53e4-c2... (diff) | |
download | core-7605bf0e52ad79a1bbb100e5a7d2f88d124dd3db.tar.gz core-7605bf0e52ad79a1bbb100e5a7d2f88d124dd3db.tar.xz core-7605bf0e52ad79a1bbb100e5a7d2f88d124dd3db.zip |
* committing a first draft of MakeInitRamFS-module adjusted to new style of
(uclibc-based) initramfs - now the slxconfig-demuxer can be used to generate
the new kind of initramfs, but several tools seem to be missing from
uclib-rootfs: sh, basename, unionfs, cowloop, (possibly more)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2049 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -187,8 +187,13 @@ supported."; \ tar --exclude=.svn -cp -C initramfs initrd-stuff/ | \ tar -xp --strip-components 1 \ -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/share/initramfs; \ + tar --exclude=.svn -cp -C initramfs stage3-stuff/ | \ + tar -xp --strip-components 1 \ + -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/share/initramfs; \ tar --exclude=.svn -cp -C initramfs distro-specs | \ tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/share; \ + tar --exclude=.svn -cp -C initramfs uclib-rootfs | \ + tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/share; \ tar --exclude=.svn --exclude *.example -cp -C boot-env pxe | \ tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/share/boot-env; \ cp -p boot-env/pxe/menu-template.example \ |