mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
git-svn-id: svn://coreboot.org/openbios/openbios-devel@11 f158a5a8-5612-0410-a976-696ce0be7e32
16 lines
267 B
Bash
Executable File
16 lines
267 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ x"$1" = x ]; then
|
|
printf "Usage:\n $0 [arch-config]"
|
|
printf "\narch-config: cross-ppc, x86\n"
|
|
exit 0
|
|
fi
|
|
|
|
ARCH=$1
|
|
|
|
rm rules.xml
|
|
rm config.xml
|
|
ln -s config/examples/${ARCH}_rules.xml rules.xml
|
|
ln -s config/examples/${ARCH}_config.xml config.xml
|
|
|