mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-24 20:13:39 +00:00
c7de829c79
Add code for AmigaOne board (preliminary merge to U-Boot, still WIP) * Patch by Jon Diekema, 12 Nov 2002: - Adding URL for IEEE OUI lookup - Making the autoboot #defines dependent on CONFIG_AUTOBOOT_KEYED being defined. - In the CONFIG_EXTRA_ENV_SETTINGS #define, the root-on-initrd and root-on-nfs macros are designed to switch how the default boot method gets defined.
10 lines
82 B
Bash
10 lines
82 B
Bash
#! /bin/sh
|
|
|
|
cd $1
|
|
PROG=$2
|
|
shift 2
|
|
rm -f *.lib *.a
|
|
$PROG $*
|
|
RET=$?
|
|
cd ..
|
|
exit $RET
|