blob: 7a63fabaf3c64ac89a0ccedffb7a12b824f69041 [file] [log] [blame]
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <asm/x86_init_fn.h>
static void early_init_memory(void) {
sleep(1);
}
static bool detect_memory(void) {
return true;
}
X86_INIT_EARLY_ALL(memory, detect_memory, NULL,
early_init_memory, NULL, NULL);