From cfe9f7933516eca591316177feb283e6941944f0 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 30 Jan 2015 11:25:14 +0000 Subject: [PATCH] Make the disks random sizes from 1-3 GB, for more excitement. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f83471f..4fbfe32 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ init: init.c %.img: rm -f $@ - truncate -s 1G $@ + truncate -s $$(( RANDOM % 3 + 1 ))G $@ echo '2048,,L' | sfdisk $@ clean: -- 1.8.3.1