Skip to content
Snippets Groups Projects
Commit 49ffd809 authored by Emanuele Aina's avatar Emanuele Aina Committed by Andrej Shadura
Browse files

scripts: Drop unused extract_initrd_uuid.sh script


Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent 587d2157
No related branches found
No related tags found
1 merge request!56scripts: Drop unused extract_initrd_uuid.sh script
#!/bin/sh
set -e
mkdir -p uuid
cd uuid
prefix=
if ls ../binary/casper/initrd.img-* > /dev/null 2>&1; then
prefix=../binary/boot/filesystem.dir/casper/
else
prefix=../binary/boot/filesystem.dir/boot/
fi
UUID=`uuidgen -r`
for initrd in `ls $prefix/initrd.img-* 2> /dev/null`; do
zcat $initrd | cpio --quiet -id
echo $UUID > conf/uuid.conf
find . | cpio --quiet --dereference -o -H newc | gzip > $initrd
rm -rf *
done
echo "I: setting rootfs UUID $UUID in initrd... copying to '.disk/casper-uuid'."
if [ ! -d ../binary/boot/filesystem.dir/.disk ]; then
mkdir -p ../binary/boot/filesystem.dir/.disk
fi
echo $UUID > ../binary/boot/filesystem.dir/.disk/casper-uuid
cd ..
rm -rf uuid
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment