]> git.siccegge.de Git - forks/vmdebootstrap.git/commitdiff
Improve wandboard support
authorNeil Williams <codehelp@debian.org>
Tue, 30 Dec 2014 21:34:05 +0000 (21:34 +0000)
committerNeil Williams <codehelp@debian.org>
Sun, 4 Jan 2015 14:34:15 +0000 (14:34 +0000)
examples/wandboard-customise.sh [changed mode: 0644->0755]
examples/wandboard-uboot.sh [new file with mode: 0755]
examples/wandboard6q.sh [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index f16cff0..070637a
@@ -3,22 +3,6 @@
 set -e
 
 rootdir=$1
-image=$2
-
-if [ -z "${image}" ]; then
-       echo "Image not specified"
-       exit
-fi
-
-if [ ! -f '/usr/lib/u-boot/wandboard_quad/u-boot.imx' ]; then
-       echo "Unable to find wandboard u-boot file"
-       exit
-fi
-
-# u-boot needs to be dd'd to the device, not a partition
-# but kpartx does not setup the device, just the partitions
-
-dd if=/usr/lib/u-boot/wandboard_quad/u-boot.imx of=${image} seek=1 conv=fsync bs=1k
 
 mkdir -p $rootdir/boot/dtbs
 cp $rootdir/usr/lib/linux-image-*-armmp/* $rootdir/boot/dtbs
diff --git a/examples/wandboard-uboot.sh b/examples/wandboard-uboot.sh
new file mode 100755 (executable)
index 0000000..d6e8b7c
--- /dev/null
@@ -0,0 +1,66 @@
+#!/bin/sh
+
+set -e
+
+# This script is experimental and incomplete.
+
+# Expects a tarball rootfs which includes a kernel, e.g.
+# wandboard6q.sh --tarball wandboard.tgz
+# wandboard-uboot.sh /dev/mmcblk0 wandboard.tgz
+
+device=$1
+tarball=$2
+
+if [ -z "${device}" ]; then
+    echo "Block device not specified"
+    exit
+fi
+
+if [ ! -f "${device}" ]; then
+    echo "Specified device does not exist: ${device}"
+    exit
+
+if [ -z "${tarball}" ]; then
+    echo "Tarball not specified"
+    exit
+fi
+
+if [ ! -f '/usr/lib/u-boot/wandboard_quad/u-boot.imx' ]; then
+    echo "Unable to find wandboard u-boot file"
+    exit
+fi
+
+# u-boot needs to be dd'd to the device, not a partition
+# but kpartx does not setup the device, just the partitions
+
+sudo dd if=/dev/zero of=${device} bs=1M count=10
+sudo dd if=/usr/lib/u-boot/wandboard_quad/u-boot.imx of=${device} seek=1 conv=fsync bs=1k
+sudo sfdisk --in-order --Linux --unit M ${device} <<-__EOF__
+1,,0x83,-
+__EOF__
+sudo mkfs.ext4 ${device}p1 -L rootfs
+
+dir=`mktemp -d`
+sudo mount ${Ddevice}p1 ${dir}
+sudo tar -xzf ${tarball} -C ${dir}
+
+# assumes a single partition deployment to SD card
+
+ver=$(basename `find $rootdir/lib/modules/ -maxdepth 1 -mindepth 1 -type d`)
+sudo touch ${dir}/uEnv.txt
+sudo chmod 666 ${dir}/uEnv.txt
+echo fdt_file=/boot/dtbs/imx6q-wandboard.dtb > ${dir}/uEnv.txt
+echo image=/boot/vmlinuz-${ver} >> ${dir}/uEnv.txt
+echo mmcroot=/dev/mmcblk0p1 rootwait rw >> ${dir}/uEnv.txt
+echo loadaddr='0x11000000' >> ${dir}/uEnv.txt
+echo initrd_addr_r='0x13000000' >> ${dir}/uEnv.txt
+echo fdt_addr='0x12000000' >> ${dir}/uEnv.txt
+echo initrd_high='0xffffffff' >> ${dir}/uEnv.txt
+echo fdt_high='0xffffffff' >> ${dir}/uEnv.txt
+echo console=ttymxc0,115200 >> ${dir}/uEnv.txt
+echo loadinitrd=load mmc ${mmcdev}:${mmcpart} ${initrd_addr_r} /boot/initrd.img-${ver}.uboot; setenv initrd_size ${filesize} >> ${dir}/uEnv.txt
+echo bootargs=console=${console},${baudrate} root=${mmcroot} >> ${dir}/uEnv.txt
+echo bootcmd=run loadfdt; run loadimage; run loadinitrd; bootz ${loadaddr} ${ramdisk_addr_r}:${filesize} ${fdt_addr} >> ${dir}/uEnv.txt
+sudo chmod 644 ${dir}/uEnv.txt
+sudo umount ${dir}
+sudo rm -rf ${dir}
old mode 100644 (file)
new mode 100755 (executable)
index 0113bef..38c05a7
@@ -2,8 +2,14 @@
 
 set -e
 
-sudo vmdebootstrap \
- --owner $(whoami) --verbose \
+# Important: this example is to create a VM image for wandboard
+# To boot the device itself, u-boot support will need to be added
+# to a real block device.
+
+user=`whoami`
+
+sudo ./vmdebootstrap \
+ --owner ${user} --verbose \
  --size 3G \
  --mirror http://http.debian.net/debian \
  --log wandboard.log --log-level debug \
@@ -12,12 +18,11 @@ sudo vmdebootstrap \
  --enable-dhcp \
  --configure-apt \
  --no-extlinux \
+ --grub \
  --no-kernel \
- --package u-boot \
  --package linux-image-armmp \
  --distribution sid \
  --serial-console-command "/sbin/getty -L ttymxc0 115200 vt100" \
- --customize "wandboard-customise.sh" \
- --bootoffset=2mib \
- --bootsize 100mib --boottype vfat \
+ --customize "./examples/wandboard-customise.sh" \
  "$@"
+