Hi!
I have systems with an amd64 and i386 processor. On amd64 machine I run commands:
Build completes without errors.
After that I copy from amd64 machine contents of /usr/src and /usr/obj/i386 to i386 machine /usr/src and /usr/obj, accordingly. When I try to do it on an i386 machine:
But install failed, because the 'install' binary is an ELF 64-bit LSB executable, x86-64.
How can I install kernel and world on an i386 machine?
Mounting via nfs and running install from amd64 machine is not suitable.
I have systems with an amd64 and i386 processor. On amd64 machine I run commands:
Code:
make TARGET=i386 TARGET_ARCH=i386 buildworld
make TARGET=i386 TARGET_ARCH=i386 builkernel KERNCONF=MYKERNEL
After that I copy from amd64 machine contents of /usr/src and /usr/obj/i386 to i386 machine /usr/src and /usr/obj, accordingly. When I try to do it on an i386 machine:
Code:
make installkernel KERNCONF=MYKERNEL
How can I install kernel and world on an i386 machine?
Mounting via nfs and running install from amd64 machine is not suitable.