From c93140e85e8d169ce64b5870f2e336bb7b3786d1 Mon Sep 17 00:00:00 2001 From: Conor Horan-Kates Date: Tue, 21 Feb 2017 17:43:39 -0800 Subject: [PATCH] adding a script to create a cpio --- revolabs-flx_uc_1000/makecpio.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 revolabs-flx_uc_1000/makecpio.sh diff --git a/revolabs-flx_uc_1000/makecpio.sh b/revolabs-flx_uc_1000/makecpio.sh new file mode 100755 index 0000000..288da93 --- /dev/null +++ b/revolabs-flx_uc_1000/makecpio.sh @@ -0,0 +1,9 @@ +#!/bin/bash +## makecpio.sh + +DIR='_fake' +OUT="revo.$$.cpio" + +find ${DIR} -print | cpio -ov > ${OUT} +ls -lh ${OUT} +binwalk -v ${OUT}