11.1Sthorpej# $NetBSD: Makefile,v 1.1 2020/02/12 06:57:35 thorpej Exp $ 21.1Sthorpej 31.1SthorpejS= ${.CURDIR}/../../../../.. 41.1Sthorpej 51.1Sthorpej# 61.1Sthorpej# This image is for the stock RedBoot configuration. The self-extracting 71.1Sthorpej# kernel image is copied from FIS partition 3 (@ 0x50060000) to 0x01d00000 81.1Sthorpej# by RedBoot. RedBoot then copies the ramdisk from FIS partition 4 91.1Sthorpej# (@ 0x50160000) to 0x01000000, and jumps to 0x01d00000. 101.1Sthorpej# 111.1Sthorpej# NOTE: While there is room for 3MB of gzboot+compressed kernel at the 121.1Sthorpej# designationed location in SDRAM, there is only 1MB of space available 131.1Sthorpej# in FIS partition 3! 141.1Sthorpej# 151.1Sthorpej 161.1SthorpejPLATFORM= NSLU2 171.1SthorpejRELOC= 0x01d00000 181.1SthorpejMAXIMAGESIZE= 0 # concatenate 191.1SthorpejLOADADDR= 0x00200000 201.1Sthorpej 211.1SthorpejCPPFLAGS+= -DCONSPEED=115200 221.1SthorpejCPPFLAGS+= -DCONADDR=0xc8000000UL 231.1Sthorpej 241.1SthorpejCPUFLAGS= -mcpu=xscale 251.1Sthorpej 261.1SthorpejLDSCRIPT= ${.CURDIR}/ldscript 271.1Sthorpej 281.1SthorpejSRCS+= nslu2.c ns16550.c ixp425_mem.c 291.1Sthorpej 301.1Sthorpej.include "${S}/arch/evbarm/stand/gzboot/Makefile.gzboot" 31