Last change
on this file since c712058 was c712058, 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 | #
|
---|
5 | DEST=$1
|
---|
6 | if [ -z "$DEST" ]; then
|
---|
7 | DEST=/srv/ftp/pub/bootscripts
|
---|
8 | fi
|
---|
9 | cd /tmp
|
---|
10 | mkdir bootscripts
|
---|
11 | cd bootscripts
|
---|
12 | svn export http://svn.cross-lfs.org/svn/repos/bootscripts/trunk/standard bootscripts-cross-lfs
|
---|
13 | tar jcvf bootscripts-cross-lfs.tar.bz2 bootscripts-cross-lfs
|
---|
14 | mv bootscripts-cross-lfs.tar.bz2 $DEST
|
---|
15 | cd ..
|
---|
16 | rm -rf bootscripts
|
---|
17 | cd /tmp
|
---|
18 | mkdir bootscripts
|
---|
19 | cd bootscripts
|
---|
20 | svn export http://svn.cross-lfs.org/svn/repos/bootscripts/trunk/embedded clfs-embedded-bootscripts
|
---|
21 | tar jcvf clfs-embedded-bootscripts.tar.bz2 clfs-embedded-bootscripts
|
---|
22 | mv clfs-embedded-bootscripts.tar.bz2 $DEST
|
---|
23 | cd ..
|
---|
24 | rm -rf bootscripts
|
---|
25 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.