From mboxrd@z Thu Jan 1 00:00:00 1970 From: alison at peloton-tech.com Date: Sat, 2 Sep 2017 17:18:57 -0700 Subject: [U-Boot] [PATCH 1/3] GPT: create block device for sandbox testing Message-ID: <1504397939-12847-1-git-send-email-alison@peloton-tech.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Alison Chaiken Provide a shell script that creates a small block device for the purpose of testing the cmd/gpt.c functions in the u-boot sandbox. Running the tests removes the device file. Signed-off-by: Alison Chaiken --- test/gpt/make-test-disk.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 test/gpt/make-test-disk.sh diff --git a/test/gpt/make-test-disk.sh b/test/gpt/make-test-disk.sh new file mode 100755 index 0000000..022acba --- /dev/null +++ b/test/gpt/make-test-disk.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +/usr/bin/truncate -s 265K disk.raw +echo -e "label: gpt\n,64K,U\n,,L" | /sbin/sgdisk ./disk.raw +/sbin/sgdisk --new=1:34:161 ./disk.raw +/sbin/sgdisk --new=2:162:496 ./disk.raw +/sbin/sgdisk -U 375a56f7-d6c9-4e81-b5f0-09d41ca89efe ./disk.raw +/sbin/gdisk -l ./disk.raw -- 2.1.4