diff --git a/soc/runtime/ksupport.ld b/soc/runtime/ksupport.ld index 4126b4a7b..0aec5ca64 100644 --- a/soc/runtime/ksupport.ld +++ b/soc/runtime/ksupport.ld @@ -4,10 +4,10 @@ ENTRY(_start) INCLUDE generated/regions.ld /* First 4M of main memory are reserved for runtime code/data - * then comes kernel memory. First 16K of kernel memory are for support code. + * then comes kernel memory. First 32K of kernel memory are for support code. */ MEMORY { - ksupport : ORIGIN = 0x40400000, LENGTH = 0x4000 + ksupport : ORIGIN = 0x40400000, LENGTH = 0x8000 } /* On AMP systems, kernel stack is at the end of main RAM, diff --git a/soc/runtime/liblwip/Makefile b/soc/runtime/liblwip/Makefile index 5dc22bcf3..0aaabd954 100644 --- a/soc/runtime/liblwip/Makefile +++ b/soc/runtime/liblwip/Makefile @@ -53,4 +53,3 @@ clean: liblwip.a: $(LWIPOBJS) $(AR) clr liblwip.a $(LWIPOBJS) - $(RANLIB) liblwip.a