mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
28 lines
757 B
Bash
Executable File
28 lines
757 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Will image the test directory (default /tmp/loadertest) if it doesn't exist
|
|
|
|
die() {
|
|
echo $*
|
|
exit 1
|
|
}
|
|
|
|
dir=$1
|
|
scriptdir=$(dirname $(realpath $0))
|
|
cd $(make -V SRCTOP)/stand
|
|
obj=$(make -V .OBJDIR)
|
|
t=$obj/userboot/test/test
|
|
|
|
[ -n "$dir" ] || dir=/tmp/loadertest
|
|
[ -d "$dir" ] || ${scriptdir}/lua-img.sh ${dir}
|
|
# We'll try userboot.so from the test directory before plucking it straight out
|
|
# of .OBJDIR.
|
|
u=$dir/boot/userboot.so
|
|
[ -f "$u" ] || u=$obj/userboot/userboot_lua/userboot_lua.so
|
|
[ -f "$dir/boot/lua/loader.lua" ] || die "No boot/lua/loader.lua found"
|
|
[ -f "$dir/boot/kernel/kernel" ] || die "No kernel to load"
|
|
[ -x "$t" ] || die "no userboot test jig found ($t)"
|
|
[ -f "$u" ] || die "no userboot.so ($u) found"
|
|
|
|
$t -h $dir -b $u
|