Bug desc: build_usb_boot.sh is unable to find build_uec_ramdisk.sh while being called from tools directory. Variable with correct path wasn't been used at all.
Change-Id: I5ddff3d587a495e6768163f6b282e5b5f7a40849
| ... | ... |
@@ -11,7 +11,6 @@ |
| 11 | 11 |
|
| 12 | 12 |
DEST_DIR=${1:-/tmp/syslinux-boot}
|
| 13 | 13 |
PXEDIR=${PXEDIR:-/opt/ramstack/pxe}
|
| 14 |
-PROGDIR=`dirname $0` |
|
| 15 | 14 |
|
| 16 | 15 |
# Clean up any resources that may be in use |
| 17 | 16 |
cleanup() {
|
| ... | ... |
@@ -81,7 +80,7 @@ fi |
| 81 | 81 |
# Get image into place |
| 82 | 82 |
if [ ! -r $PXEDIR/stack-initrd.img ]; then |
| 83 | 83 |
cd $TOP_DIR |
| 84 |
- $PROGDIR/build_uec_ramdisk.sh $PXEDIR/stack-initrd.img |
|
| 84 |
+ $TOOLS_DIR/build_uec_ramdisk.sh $PXEDIR/stack-initrd.img |
|
| 85 | 85 |
fi |
| 86 | 86 |
if [ ! -r $PXEDIR/stack-initrd.gz ]; then |
| 87 | 87 |
gzip -1 -c $PXEDIR/stack-initrd.img >$PXEDIR/stack-initrd.gz |