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.
12 lines
198 B
12 lines
198 B
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
dir=./iso
|
||
|
iso=preos.iso
|
||
|
|
||
|
./filelist_from_package.sh | ./filelist_to_dir.sh "$dir"
|
||
10 years ago
|
echo "MISSING: copy libraries" >&2
|
||
10 years ago
|
./add_kernel_isolinux.sh "$dir"
|
||
|
./create_iso.sh "$dir" "$iso"
|