forked from ungleich-public/cdist
can generate initramfs from busybox
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
parent
f51a444012
commit
7ba6c0a44a
10 changed files with 119 additions and 29 deletions
18
hacking/v2-initramfs-from-os/filelist_to_dir.sh
Executable file
18
hacking/v2-initramfs-from-os/filelist_to_dir.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "$0 outdir"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
outdir=$1; shift
|
||||
|
||||
mkdir -p "$outdir"
|
||||
|
||||
while read file; do
|
||||
if [ -d "$file" ]; then
|
||||
mkdir -p "$outdir$file"
|
||||
else
|
||||
cp --preserve=mode,links "$file" "$outdir$file"
|
||||
fi
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue