ef89b8a29f
Remove the need for a configuration file. Some of the command line options had to be switched up a bit in order to do this. Also simplify the package list- only one package list is needed, not a directory, and additional packages can be specified on the command line. Signed-off-by: Dan McGee <dan@archlinux.org>
8 lines
125 B
Bash
Executable File
8 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "usage: testiso <iso name>"
|
|
exit 1
|
|
fi
|
|
qemu -boot d -kernel-kqemu -cdrom "${1}"
|