rename & cleanup
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
parent
50bca7891f
commit
bb9d889d15
7 changed files with 22 additions and 6 deletions
23
hacking/v2-initramfs-from-os/copy_files_for_iso.sh
Executable file
23
hacking/v2-initramfs-from-os/copy_files_for_iso.sh
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
testdir=./iso-root-dir
|
||||
|
||||
# Create base
|
||||
rm -rf "$testdir"
|
||||
mkdir "$testdir"
|
||||
|
||||
# Copy binaries
|
||||
|
||||
# Copy kernel
|
||||
mkdir -p "$testdir/boot"
|
||||
cp /boot/vmlinuz-linux "$testdir/boot/kernel"
|
||||
cp /boot/initramfs-linux-fallback.img "$testdir/boot/initramfs"
|
||||
|
||||
# Create iso
|
||||
genisoimage -v -V "cdist preos v0.1" \
|
||||
-cache-inodes -J -l \
|
||||
-r -no-emul-boot \
|
||||
-boot-load-size 4 -b isolinux.bin -c boot.cat -o cdist-preos.iso iso
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue