=== added file 'boards.d/vexpresstc2.conf'
--- boards.d/vexpresstc2.conf	1970-01-01 00:00:00 +0000
+++ boards.d/vexpresstc2.conf	2012-09-17 14:21:19 +0000
@@ -0,0 +1,22 @@
+# vim: syntax=sh
+DESC="ARM Versatile Express - TC2"
+# Root File System
+ROOTFS=linaro-precise-nano-20120626-237.tar.gz
+ROOTFS_URL=http://releases.linaro.org/12.06/ubuntu/precise-images/nano/$ROOTFS
+ROOTFS_MD5=8ee72bc38e4739a6720c5bba678d8ed0
+# Root filesystem partition number as created by linaro-media-create
+ROOTFS_PARTITION=2
+# Hardware Pack
+HWPACK=hwpack_linaro-vexpress_20120627-132_armhf_supported.tar.gz
+HWPACK_URL=http://releases.linaro.org/12.06/ubuntu/vexpress/$HWPACK
+HWPACK_MD5=7376ab405e6dff952ed754b968c238fc
+# Device name for linaro-media-create
+LMC_DEV=vexpress-a9
+# Device name for LAVA
+LAVA_DEV=lava:vexpresstc2
+# When LICENSE_WRAP is not empty then a custom download handler is required to
+# evade the license wrapper. In such cases a dedicated download function must
+# be defined in this file. The function has to be called
+# ${board}_download_and_md5() where ${board} is the name of this file without
+# the .conf suffix.
+LICENSE_WRAP=

=== added file 'lava-enable-gnome-automount'
--- lava-enable-gnome-automount	1970-01-01 00:00:00 +0000
+++ lava-enable-gnome-automount	2012-09-17 14:21:19 +0000
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+# Prevent gnome from popping up windows
+if [ -n "$(which dconf)" ]; then
+    dconf write /org/gnome/desktop/media-handling/automount true
+    dconf write /org/gnome/desktop/media-handling/automount-open true
+    echo "GNOME automont is now enabled"
+else
+    echo "You don't have dconf binary installed"
+fi

=== modified file 'master-rootfs-extras/bin/lava-partition-disk'
--- master-rootfs-extras/bin/lava-partition-disk	2012-06-29 06:56:26 +0000
+++ master-rootfs-extras/bin/lava-partition-disk	2012-09-17 14:21:19 +0000
@@ -93,8 +93,13 @@
             SCHEME=2part
             DEVICE="/dev/mmcblk0"
             ;;
+        lava:vexpresstc2)
+            PRE_ENV=N
+            SCHEME=2part
+            DEVICE="/dev/mmcblk0"
+            ;;
         *)
-            echo "Board type \"$1\" not supported"
+            echo "Board type \"$DEVICE_TYPE\" not supported"
             exit 1
             ;;
     esac

