source: bootscripts-embedded/bootscripts_tarballs @ 4230d00

Last change on this file since 4230d00 was 4230d00, checked in by Joe Ciccone <jciccone@…>, 15 years ago

Move the dist script into the embedded directory.

  • Property mode set to 100755
File size: 660 bytes
Line 
1#!/bin/bash
2
3# Cross-LFS Bootscripts Tarball Package
4#
5DEST=$1
6if [ -z "$DEST" ]; then
7        DEST=/srv/ftp/pub/bootscripts
8fi
9cd /tmp
10mkdir bootscripts
11cd bootscripts
12svn export http://svn.cross-lfs.org/svn/repos/bootscripts/trunk/standard bootscripts-cross-lfs
13tar jcvf bootscripts-cross-lfs.tar.bz2 bootscripts-cross-lfs
14mv bootscripts-cross-lfs.tar.bz2 $DEST
15cd ..
16rm -rf bootscripts
17cd /tmp
18mkdir bootscripts
19cd bootscripts
20svn export http://svn.cross-lfs.org/svn/repos/bootscripts/trunk/embedded clfs-embedded-bootscripts
21tar jcvf clfs-embedded-bootscripts.tar.bz2 clfs-embedded-bootscripts
22mv clfs-embedded-bootscripts.tar.bz2 $DEST
23cd ..
24rm -rf bootscripts
25
Note: See TracBrowser for help on using the repository browser.