Subject: jdk-1.4 under linux emulation works!
To: None <current-users@netbsd.org>
From: Christos Zoulas <christos@zoulas.com>
List: current-users
Date: 03/19/2002 15:57:24
After today's signal commit. To use it:
- grab modern linux libraries [RH7.2 etc.]
- grab the linux jdk-1.4 binary from sun.
- bump the linux version in the kernel to be 2.4.18
[you can use the following script if you don't know how]
This is i386 only.
Enjoy,
christos
#!/bin/sh
cat << __EOF | gdb -batch -x /dev/stdin /netbsd
set write
target kcore /dev/mem
print ((char *)&linux_release)
set ((char *)&linux_release)[2] = '4'
print ((char *)&linux_release)
quit
__EOF