symbian-qemu-0.9.1-12/qemu-symbian-svp/gen_devices.sh
author Gareth Stockwell <gareth.stockwell@accenture.com>
Fri, 24 Sep 2010 13:30:20 +0100
branchgraphics-phase-3
changeset 114 19c4533e1567
parent 1 2fb8b9db1c86
permissions -rw-r--r--
Merged default branch into graphics-phase-3

#! /bin/sh
# Call device init functions.

file="$1"
shift
devices="$@"
echo '/* Generated by gen_devices.sh */' > $file
for x in $devices ; do
    echo "void ${x}_register(void);" >> $file
done
echo "void register_devices(void)" >> $file
echo "{" >> $file
for x in $devices ; do
    echo "    ${x}_register();" >> $file
done
echo "}" >> $file