You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
dir=./iso
|
|
iso=preos.iso
|
|
|
|
./filelist_from_package.sh | ./filelist_to_dir.sh "$dir"
|
|
echo "MISSING: copy libraries" >&2
|
|
./add_kernel_isolinux.sh "$dir"
|
|
./create_iso.sh "$dir" "$iso"
|
|
|