2013-12-29 12:01:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2014-02-26 14:46:08 +01:00
|
|
|
set -e
|
|
|
|
|
2014-02-28 08:03:56 +01:00
|
|
|
# Requires root ..
|
|
|
|
if [ "$UID" -ne 0 ]; then
|
|
|
|
echo "Please run as root"
|
|
|
|
fi
|
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
# --- Configuration -------------------------------------------------------------
|
2014-02-26 14:07:17 +01:00
|
|
|
IMG_NAME=${IMG_NAME:-"SlackwareARM_cubitruck"}
|
|
|
|
VERSION=${VERSION:-0.2}
|
|
|
|
COMPILE=${COMPILE:-"true"}
|
|
|
|
DEST=${DEST:-~/cubieslack}
|
2014-02-27 23:11:40 +01:00
|
|
|
CUBIETRUCK_DISPLAY=${CUBIETRUCK_DISPLAY:-"HDMI"} # "HDMI" or "VGA"
|
2014-02-26 14:07:17 +01:00
|
|
|
IMAGE_SIZE_MB=${IMAGE_SIZE_MB:-2000}
|
|
|
|
SLACKWARE_VERSION=${SLACKWARE_VERSION:-14.1}
|
|
|
|
ROOTFS_VERSION=${ROOTFS_VERSION:-04Nov13}
|
2014-02-26 14:46:08 +01:00
|
|
|
TOOLCHAIN_VERSION=${TOOLCHAIN_VERSION:-4.8-2013.10}
|
|
|
|
TOOLCHAIN_URL_RANDOM_NUMBER=${TOOLCHAIN_URL_RANDOM_NUMBER:-155358238}
|
2014-02-26 14:07:17 +01:00
|
|
|
|
2014-02-28 08:23:39 +01:00
|
|
|
# commandline arguments processing
|
|
|
|
while [ "x$1" != "x" ]
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-c | --compile )
|
|
|
|
shift
|
|
|
|
COMPILE="true"
|
|
|
|
;;
|
|
|
|
-dc | --dont-compile )
|
|
|
|
shift
|
|
|
|
COMPILE="false"
|
|
|
|
;;
|
|
|
|
-d | --display )
|
|
|
|
shift
|
|
|
|
CUBIETRUCK_DISPLAY=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-n | --image-name )
|
|
|
|
shift
|
|
|
|
IMG_NAME=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-r | --rootfs-version )
|
|
|
|
shift
|
|
|
|
ROOTFS_VERSION=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-o | --output )
|
|
|
|
shift
|
|
|
|
DEST=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-v | --image-version )
|
|
|
|
shift
|
|
|
|
VERSION=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-xv | --toolchain-version )
|
|
|
|
shift
|
|
|
|
TOOLCHAIN_VERSION=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-xumn | --toolchain-url-magic-number )
|
|
|
|
shift
|
|
|
|
TOOLCHAIN_URL_RANDOM_NUMBER=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
|
|
|
|
-h | --help )
|
|
|
|
echo -e "Usage: run as root: $0 <options>"
|
|
|
|
echo -e "Options:"
|
|
|
|
echo -e "\t-c | --compile"
|
|
|
|
echo -e "\t-dc | --dont-compile"
|
|
|
|
echo -e "\t-d | --display [\"HDMI\"|\"VGA\"] (default: $CUBIETRUCK_DISPLAY)"
|
|
|
|
echo -e "\t-n | --image-name [\"nom\"] (default: $IMG_NAME)"
|
|
|
|
echo -e "\t-r | --rootfs-version [\"version number\"] (default: $ROOTFS_VERSION)"
|
|
|
|
echo -e "\t-o | --output [/directory/] (default: $DEST)"
|
|
|
|
echo -e "\t-v | --image-version [\"version number\"] (default: $VERSION)"
|
|
|
|
echo -e "\t-xv | --toolchain-version [\"version number\"] (default: $TOOLCHAIN_VERSION)"
|
|
|
|
echo -e "\t-xumn | --toolchain-url-magic-number [\"magic number\"] (default: $TOOLCHAIN_URL_RANDOM_NUMBER)"
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2014-02-26 14:07:17 +01:00
|
|
|
# --- Script --------------------------------------------------------------------
|
2014-02-26 12:06:35 +01:00
|
|
|
CWD=$(pwd)
|
2013-12-29 13:57:19 +01:00
|
|
|
|
2014-02-26 12:06:35 +01:00
|
|
|
mkdir -p $DEST
|
|
|
|
|
2014-02-26 14:46:08 +01:00
|
|
|
echo "Building Cubietruck-Slackware in $DEST from $CWD"
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-28 08:03:56 +01:00
|
|
|
if [ "$COMPILE" = "true" ]; then
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-28 08:03:56 +01:00
|
|
|
echo "--------------------------------------------------------------------------------"
|
|
|
|
echo "Downloading necessary files for building - aka Toolchain"
|
|
|
|
echo "--------------------------------------------------------------------------------"
|
|
|
|
if $(uname -m | grep -q arm); then
|
|
|
|
CROSS_COMPILE=''
|
|
|
|
else
|
|
|
|
#Read this for further information if you run into problems with gcc compiler
|
|
|
|
#http://linux-sunxi.org/Toolchain
|
|
|
|
if [ ! -e $PWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux/ ]; then
|
|
|
|
[ ! -e $CWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz ] && wget -c https://launchpadlibrarian.net/$TOOLCHAIN_URL_RANDOM_NUMBER/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz -O $CWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz
|
|
|
|
tar xf $CWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz
|
|
|
|
fi
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-28 08:03:56 +01:00
|
|
|
CROSS_COMPILE=$PWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux/bin/arm-linux-gnueabihf-
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "--------------------------------------------------------------------------------"
|
|
|
|
echo "Clone / Pull sources and patch"
|
|
|
|
echo "--------------------------------------------------------------------------------"
|
|
|
|
mkdir -p $DEST/output
|
2014-02-17 08:53:07 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
# Boot loader
|
|
|
|
if [ -d "$DEST/u-boot-sunxi" ]; then
|
|
|
|
( cd $DEST/u-boot-sunxi;
|
|
|
|
git pull )
|
|
|
|
else
|
|
|
|
git clone https://github.com/cubieboard/u-boot-sunxi $DEST/u-boot-sunxi
|
|
|
|
|
|
|
|
# Applying Patch for 2gb memory
|
|
|
|
patch -f $DEST/u-boot-sunxi/include/configs/sunxi-common.h < $CWD/patch/memory.patch || true
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Allwinner tools
|
|
|
|
if [ -d "$DEST/sunxi-tools" ]; then
|
|
|
|
( cd $DEST/sunxi-tools;
|
|
|
|
git pull )
|
|
|
|
else
|
|
|
|
git clone https://github.com/linux-sunxi/sunxi-tools.git $DEST/sunxi-tools
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Hardware configurations
|
|
|
|
if [ -d "$DEST/cubie_configs" ]; then
|
|
|
|
( cd $DEST/cubie_configs;
|
|
|
|
git pull )
|
|
|
|
else
|
|
|
|
git clone https://github.com/cubieboard/cubie_configs $DEST/cubie_configs
|
|
|
|
|
|
|
|
# Applying Patch for high load. Could cause troubles with USB OTG port
|
|
|
|
sed -e 's/usb_detect_type = 1/usb_detect_type = 0/g' $DEST/cubie_configs/sysconfig/linux/cubietruck.fex > $DEST/cubie_configs/sysconfig/linux/ct.fex
|
|
|
|
|
|
|
|
# Prepare fex files for VGA & HDMI
|
|
|
|
sed -e 's/screen0_output_type.*/screen0_output_type = 3/g' $DEST/cubie_configs/sysconfig/linux/ct.fex > $DEST/cubie_configs/sysconfig/linux/ct-hdmi.fex
|
|
|
|
sed -e 's/screen0_output_type.*/screen0_output_type = 4/g' $DEST/cubie_configs/sysconfig/linux/ct.fex > $DEST/cubie_configs/sysconfig/linux/ct-vga.fex
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Patwood's kernel 3.4.75+
|
|
|
|
if [ -d "$DEST/linux-sunxi" ]; then
|
|
|
|
( cd $DEST/linux-sunxi;
|
|
|
|
git pull -f )
|
|
|
|
else
|
|
|
|
git clone https://github.com/patrickhwood/linux-sunxi $DEST/linux-sunxi
|
|
|
|
fi
|
2014-02-24 19:44:00 +01:00
|
|
|
fi
|
2014-02-17 08:53:07 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "--------------------------------------------------------------------------------"
|
|
|
|
echo "Compiling everything"
|
|
|
|
echo "--------------------------------------------------------------------------------"
|
2014-02-26 12:06:35 +01:00
|
|
|
|
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
if [ "$COMPILE" = "true" ]; then
|
|
|
|
echo "------ Compiling boot loader"
|
|
|
|
cd $DEST/u-boot-sunxi
|
|
|
|
make clean
|
|
|
|
make -j2 'cubietruck' CROSS_COMPILE=$CROSS_COMPILE
|
|
|
|
make HOSTCC=gcc CROSS_COMPILE='' tools
|
2014-02-26 12:46:06 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "------ Compiling sunxi tools"
|
|
|
|
cd $DEST/sunxi-tools
|
|
|
|
make clean
|
|
|
|
make fex2bin bin2fex
|
2014-02-26 12:46:06 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
PATH=$PATH:$DEST/u-boot-sunxi/tools/
|
2014-01-02 11:33:32 +01:00
|
|
|
|
2014-02-26 12:06:35 +01:00
|
|
|
echo "------ Compiling kernel"
|
|
|
|
cd $DEST/linux-sunxi
|
|
|
|
make clean
|
|
|
|
|
|
|
|
# Adding wlan firmware to kernel source
|
2014-02-27 13:24:06 +01:00
|
|
|
( cd $DEST/linux-sunxi/firmware;
|
|
|
|
unzip -o $CWD/bin/ap6210.zip )
|
2014-02-26 12:06:35 +01:00
|
|
|
|
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=$CROSS_COMPILE sun7i_defconfig
|
|
|
|
|
|
|
|
# get proven config
|
2014-02-27 23:11:40 +01:00
|
|
|
cp $CWD/config/kernel.config $DEST/linux-sunxi/.config
|
2014-02-26 12:06:35 +01:00
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=$CROSS_COMPILE uImage modules
|
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=$CROSS_COMPILE INSTALL_MOD_PATH=output modules_install
|
|
|
|
make -j2 ARCH=arm CROSS_COMPILE=$CROSS_COMPILE INSTALL_HDR_PATH=output headers_install
|
2014-02-10 13:36:25 +01:00
|
|
|
fi
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "--------------------------------------------------------------------------------"
|
|
|
|
echo "Creating SD Image"
|
|
|
|
echo "--------------------------------------------------------------------------------"
|
2013-12-29 12:01:02 +01:00
|
|
|
cd $DEST/output
|
2014-02-26 14:07:17 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "create image and mount image to next free loop device"
|
2014-02-26 14:07:17 +01:00
|
|
|
dd if=/dev/zero of=${IMG_NAME}-${VERSION}_rootfs_SD.raw bs=1M count=$IMAGE_SIZE_MB
|
|
|
|
|
2014-01-07 20:21:03 +01:00
|
|
|
LOOP0=$(losetup -f)
|
2014-02-26 15:51:52 +01:00
|
|
|
losetup $LOOP0 ${IMG_NAME}-${VERSION}_rootfs_SD.raw
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-01-02 11:33:32 +01:00
|
|
|
echo "------ Partitionning and mounting filesystem"
|
2014-01-07 20:21:03 +01:00
|
|
|
dd if=$DEST/u-boot-sunxi/u-boot-sunxi-with-spl.bin of=$LOOP0 bs=1024 seek=8
|
2013-12-29 12:01:02 +01:00
|
|
|
|
|
|
|
# create one partition starting at 2048 which is default
|
2014-01-07 20:21:03 +01:00
|
|
|
(echo n; echo p; echo 1; echo; echo; echo w) | fdisk $LOOP0 >> /dev/null || true
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2013-12-29 12:01:02 +01:00
|
|
|
# just to make sure
|
2014-01-07 20:27:30 +01:00
|
|
|
partprobe $LOOP0
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-01-07 20:21:03 +01:00
|
|
|
LOOP1=$(losetup -f)
|
2013-12-29 12:01:02 +01:00
|
|
|
# 2048 (start) x 512 (block size) = where to mount partition
|
2014-02-24 19:44:00 +01:00
|
|
|
losetup -o 1048576 $LOOP1 $LOOP0
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "create filesystem"
|
2014-01-07 20:21:03 +01:00
|
|
|
mkfs.ext4 $LOOP1
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "create mount point and mount image"
|
2013-12-29 12:01:02 +01:00
|
|
|
mkdir -p $DEST/output/sdcard/
|
2014-01-07 20:21:03 +01:00
|
|
|
mount $LOOP1 $DEST/output/sdcard/
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-24 19:44:00 +01:00
|
|
|
echo "------ Get basic Slackware System"
|
2014-01-24 17:44:16 +01:00
|
|
|
cd $DEST/output/sdcard/
|
2014-02-27 23:11:40 +01:00
|
|
|
[ ! -e $CWD/slack-$SLACKWARE_VERSION-miniroot_$ROOTFS_VERSION.tar.xz ] && wget -c ftp://ftp.arm.slackware.com/slackwarearm/slackwarearm-devtools/minirootfs/roots/slack-$SLACKWARE_VERSION-miniroot_$ROOTFS_VERSION.tar.xz -O $CWD/slack-$SLACKWARE_VERSION-miniroot_$ROOTFS_VERSION.tar.xz
|
2014-02-26 15:55:51 +01:00
|
|
|
tar xf $CWD/slack-$SLACKWARE_VERSION-miniroot_$ROOTFS_VERSION.tar.xz
|
2014-01-02 11:33:32 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "Configuring Slackware"
|
2014-01-10 15:08:31 +01:00
|
|
|
cat > $DEST/output/sdcard/etc/motd <<EOF
|
2014-02-24 19:44:00 +01:00
|
|
|
_ _ _ _
|
2014-01-10 15:08:31 +01:00
|
|
|
___ _ _ | |__ (_) ___ | |_ _ __ _ _ ___ | | __
|
|
|
|
/ __|| | | || '_ \ | | / _ \| __|| '__|| | | | / __|| |/ /
|
2014-02-24 19:44:00 +01:00
|
|
|
| (__ | |_| || |_) || || __/| |_ | | | |_| || (__ | <
|
2014-01-10 15:08:31 +01:00
|
|
|
\___| \__,_||_.__/ |_| \___| \__||_| \__,_| \___||_|\_\
|
2014-02-24 19:44:00 +01:00
|
|
|
Slackware
|
2014-01-10 15:08:31 +01:00
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "install script to turn off the LED blinking"
|
2014-02-26 14:46:08 +01:00
|
|
|
cp $CWD/scripts/disable_led.sh $DEST/output/sdcard/bin/disable_led.sh
|
2014-01-24 17:44:16 +01:00
|
|
|
chmod +x $DEST/output/sdcard/bin/disable_led.sh
|
2014-01-01 19:34:06 +01:00
|
|
|
|
2014-02-27 22:35:25 +01:00
|
|
|
cat <<EOF >> $DEST/output/sdcard/etc/rc.d/rc.local
|
|
|
|
|
|
|
|
# Uncomment the following line to turn off the leds after booting
|
|
|
|
# /bin/disable_led.sh
|
|
|
|
EOF
|
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "scripts for autoresize at first boot from cubian"
|
2014-02-26 14:46:08 +01:00
|
|
|
cp $CWD/scripts/resize2fs-arch.sh $DEST/output/sdcard/root/resize2fs-root.sh
|
2014-02-26 12:06:35 +01:00
|
|
|
chmod +x $DEST/output/sdcard/root/resize2fs-root.sh
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "set hostname"
|
2014-02-26 12:06:35 +01:00
|
|
|
echo darkstar > $DEST/output/sdcard/etc/HOSTNAME
|
2014-01-29 19:33:14 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "setup fstab"
|
2014-02-26 12:06:35 +01:00
|
|
|
### declare root partition in fstab
|
|
|
|
echo '/dev/mmcblk0p1 / ext4 defaults 1 1' >> $DEST/output/sdcard/etc/fstab
|
2014-02-15 15:22:33 +01:00
|
|
|
### mount /tmp as tmpfs
|
2014-02-26 12:06:35 +01:00
|
|
|
echo 'tmpfs /tmp tmpfs defaults,nosuid,size=30% 0 0' >> $DEST/output/sdcard/etc/fstab
|
2014-02-15 15:22:33 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "modules to load"
|
2014-02-26 12:06:35 +01:00
|
|
|
cat >> $DEST/output/sdcard/etc/rc.d/rc.modules <<EOT
|
|
|
|
#!/bin/sh
|
|
|
|
|
2014-02-24 19:44:00 +01:00
|
|
|
/sbin/modprobe hci_uart
|
|
|
|
/sbin/modprobe gpio_sunxi
|
|
|
|
/sbin/modprobe bcmdhd
|
|
|
|
/sbin/modprobe ump
|
|
|
|
/sbin/modprobe mali
|
|
|
|
#/sbin/modprobe sunxi_gmac
|
2014-01-25 11:03:52 +01:00
|
|
|
EOT
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "remove the preconfigured boot and setup ours"
|
2014-01-22 11:47:48 +01:00
|
|
|
rm -rf $DEST/output/sdcard/boot/
|
2014-02-26 12:06:35 +01:00
|
|
|
mkdir -p $DEST/output/sdcard/boot/
|
2014-02-27 23:11:40 +01:00
|
|
|
cat <<EOF > $DEST/output/sdcard/boot/uEnv.txt
|
|
|
|
root=/dev/mmcblk0p1 ro
|
|
|
|
extraargs=console=tty0,115200 sunxi_no_mali_mem_reserve sunxi_g2d_mem_reserve=0 sunxi_ve_mem_reserve=0 hdmi.audio=EDID:0 disp.screen0_output_mode=EDID:1280x720p50 rootwait panic=10 rootfstype=ext4 rootflags=discard
|
|
|
|
panic=10 rootfstype=ext4 rootflags=discard
|
|
|
|
EOF
|
2013-12-29 12:01:02 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "setup video output"
|
|
|
|
echo $CUBIETRUCK_DISPLAY
|
|
|
|
case $CUBIETRUCK_DISPLAY in
|
|
|
|
VGA) # VGA
|
|
|
|
$DEST/sunxi-tools/fex2bin $DEST/cubie_configs/sysconfig/linux/ct-vga.fex$DEST/output/sdcard/boot/script.bin
|
2014-02-26 16:14:39 +01:00
|
|
|
;;
|
2014-02-27 23:11:40 +01:00
|
|
|
HDMI) # HDMI
|
|
|
|
$DEST/sunxi-tools/fex2bin $DEST/cubie_configs/sysconfig/linux/ct-hdmi.fex $DEST/output/sdcard/boot/script.bin
|
2014-02-26 16:14:39 +01:00
|
|
|
;;
|
|
|
|
*) exit 1
|
|
|
|
esac
|
2014-01-15 18:03:53 +01:00
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "Installing kernel"
|
|
|
|
cp $DEST/linux-sunxi/arch/arm/boot/uImage $DEST/output/sdcard/boot/
|
2013-12-29 12:01:02 +01:00
|
|
|
cp -R $DEST/linux-sunxi/output/lib/modules $DEST/output/sdcard/lib/
|
|
|
|
cp -R $DEST/linux-sunxi/output/lib/firmware/ $DEST/output/sdcard/lib/
|
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
sync
|
|
|
|
|
|
|
|
sleep 3
|
|
|
|
|
|
|
|
echo "umount images"
|
2014-02-27 23:15:20 +01:00
|
|
|
umount -d -l $DEST/output/sdcard/
|
2014-01-07 20:21:03 +01:00
|
|
|
losetup -d $LOOP1
|
|
|
|
losetup -d $LOOP0
|
2014-02-26 12:06:35 +01:00
|
|
|
|
2014-02-27 23:16:25 +01:00
|
|
|
echo "cleaning"
|
|
|
|
rm -r $DEST/output/sdcard/
|
|
|
|
|
2014-02-27 23:11:40 +01:00
|
|
|
echo "compress image"
|
2014-01-01 17:12:16 +01:00
|
|
|
gzip $DEST/output/*.raw
|