Hello, I just tried to build coreboot.rom for an Axus TC 320 as described in the Build tutorial.
./buildtarget axus/tc320
until here everything works fine.
LANG=C make The job stop with the following messages.
objdump -dS coreboot > coreboot.disasm objcopy --gap-fill 0xff -O binary coreboot coreboot.strip make[1]: *** No rule to make target `../../../../../../../images/etherboot.elf', needed by `payload'. Stop. make[1]: Leaving directory `/home/bz/neu/coreboot-v2/targets/axus/tc320/tc320/normal' make: *** [normal/coreboot.rom] Error 2
What am i doing wrong? Can anyone help me?
I try to do that with different revisions of Coreboot-V2
On Tue, Aug 11, 2009 at 11:43 AM, bz bzadow@web.de wrote:
Hello, I just tried to build coreboot.rom for an Axus TC 320 as described in the Build tutorial.
./buildtarget axus/tc320
until here everything works fine.
LANG=C make The job stop with the following messages.
objdump -dS coreboot > coreboot.disasm objcopy --gap-fill 0xff -O binary coreboot coreboot.strip make[1]: *** No rule to make target `../../../../../../../images/etherboot.elf', needed by `payload'. Stop.
It can't find your payload. You need to change ../../../../../../../images/etherboot.elf to ../payload.elf and copy your payload (filo, SeaBIOS, etc) to targets/axus/tc320/tc320/payload.elf
Thanks, Myles
Hi Björn,
On 11.08.2009 19:43, bz wrote:
I just tried to build coreboot.rom for an Axus TC 320 as described in the Build tutorial.
./buildtarget axus/tc320
20 minutes ago Patrick committed a change to payload handling which may help you. Please retry with latest subversion.
Regards, Carl-Daniel