Andreas Schwab <schwab <at> linux-m68k.org> writes: > If the size of the first memory chunk is at least 16MB increase the > initial mapping to 16MB instead of 4MB. This makes it possible to map
Why not always? > /* size of memory already mapped in head.S */ > -#define INIT_MAPPED_SIZE (4UL<<20) > +#define INIT_MAPPED_SIZE (m68k_memory[0].size >= 16UL<<20 ? 16UL<<20 : 4UL<<20) Ah, so this is where we missed when I tried earlier. bye, //mirabilos -- To unsubscribe from this list: send the line "unsubscribe linux-m68k" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
