View Issue Details

IDProjectCategoryView StatusLast Update
0000278EBoot_NDCU8EBootpublic2011-02-07 13:41
ReporterKiepferAssigned To 
PrioritynormalSeverityminorReproducibilityhave not tried
Status resolvedResolutionfixed 
Product VersionV1.35 
Target VersionV1.36Fixed in VersionV1.36 
Summary0000278: Selftest hangs on EBoot V1.35 (64MB)
DescriptionWhen starting the selftest, the NetDCU8 hangs. Last message is:
Serial 0: S3C2440
  internal loopback...
Forum Link

Activities

Kiepfer

2010-03-25 10:18

developer   ~0000185

stack pointer positioned incorrectly!?

froelich

2011-02-07 13:41

administrator   ~0000329

Start address of stack is wrong. It must be same value as in .BIB file.
Old:
!IF "$(MEMLAYOUT_64M)" == "1"
ADEFINES=-pd "STACK SETA 0x83F00000" $(ADEFINES)
!ELSE
ADEFINES=-pd "STACK SETA 0x81F00000" $(ADEFINES)
!ENDIF
New:
!IF "$(MEMLAYOUT_64M)" == "1"
ADEFINES=-pd "STACK SETA 0x83F40000" $(ADEFINES)
!ELSE
ADEFINES=-pd "STACK SETA 0x81F40000" $(ADEFINES)
!ENDIF

Only version V1.35 has this error.