summaryrefslogtreecommitdiff
path: root/nfs/scripts/image_deploy_I4920.sh
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2020-07-04 23:38:38 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2020-07-04 23:38:38 +0200
commitcf81fed0c9277550e6b98927f7ff2f8eb5de7b40 (patch)
treed193ebdaed1853d2868c26c43d2fc0c00ebb42ac /nfs/scripts/image_deploy_I4920.sh
parent8d273fe8d76ef394cfab04a195c90f4b7aeb8495 (diff)
downloadeficast-cf81fed0c9277550e6b98927f7ff2f8eb5de7b40.tar.gz
eficast-cf81fed0c9277550e6b98927f7ff2f8eb5de7b40.tar.bz2
eficast-cf81fed0c9277550e6b98927f7ff2f8eb5de7b40.zip
Add blkdiscard on image. Add nfs scripts newer examples.
Diffstat (limited to 'nfs/scripts/image_deploy_I4920.sh')
-rw-r--r--nfs/scripts/image_deploy_I4920.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/nfs/scripts/image_deploy_I4920.sh b/nfs/scripts/image_deploy_I4920.sh
deleted file mode 100644
index 1cd3220..0000000
--- a/nfs/scripts/image_deploy_I4920.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/busybox sh
-# Should only started from image_capture.sh, it defines some helper functions and variables)
-# echo_color() <text-color> <background-color> [prefix text] <message>
-# $outdir is the also the current working dir, garanted to be empty and writable
-# Many cloning/partitioning tools are available for use, see make-boot-image.sh
-
-echo_color white blue ">>> " "Restoring /dev/sda boot sectors"
-pigz -dc "$indir/sda-dd.gz" | dd of=/dev/sda count=2048
-
-echo_color white blue ">>> " "Detecting new partitions"
-echo -e "w\nq\n" | fdisk /dev/sda
-
-echo_color white blue ">>> " "Restoring /dev/sda1 NTFS BOOT"
-pigz -dc "$indir/sda1-partclone.gz" | partclone.restore -o /dev/sda1
-
-echo_color white blue ">>> " "Restoring /dev/sda2 NTFS WINDOWS"
-pigz -dc "$indir/sda2-partclone.gz" | partclone.restore -o /dev/sda2
-
-