Difference between revisions of "Build script for EA distribution"

From Klaus' wiki
Jump to: navigation, search
(Created page with 'This is a small script that helps you build the distribution. <source lang="bash"> #!/bin/bash # # A smal helper script that copies the final result to the tftpboot directory # …')
 
Line 1: Line 1:
This is a small script that helps you build the distribution.
+
This is a small script that helps you build the distribution. Place it in the '''uClinux-dist''' directory (that's the point where you bild the distribution)
  
 
<source lang="bash">
 
<source lang="bash">

Revision as of 08:12, 15 February 2011

This is a small script that helps you build the distribution. Place it in the uClinux-dist directory (that's the point where you bild the distribution)

#!/bin/bash
#
# A smal helper script that copies the final result to the tftpboot directory
#
# Klaus Kolle 2010 11 13
#
. settings.sh
touch images/maketimestamp
make >make-out.txt 2>&1
if [ images/uLinux.bin -nt images/maketimestamp ] ; then
        cp images/uLinux.bin images/romfs.img /tftpboot
        echo "Copied new images to tftpboot"
fi
rm images/maketimestamp