if (size.toWord().isZero()) {
// No initial jarfile
BootLogInstance.get().info("No initial jarfile found");
return null;
} else {
BootLogInstance.get().info("Found initial jarfile of " + size.toInt() + 'b');
try {
final ResourceOwner owner = new SimpleResourceOwner("System");
return rm.claimMemoryResource(owner, start, size,
ResourceManager.MEMMODE_NORMAL);
} catch (ResourceNotFreeException ex) {