diff --git a/board/apple/board-n61ap.c b/board/apple/board-n61ap.c new file mode 100644 index 0000000..5041a75 --- /dev/null +++ b/board/apple/board-n61ap.c @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (c) 2022, Ivaylo Ivanov + */ + +#include + +void board_init(void) { + +} diff --git a/include/board/board-n61ap.h b/include/board/board-n61ap.h new file mode 100644 index 0000000..0b1715d --- /dev/null +++ b/include/board/board-n61ap.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (c) 2022, Ivaylo Ivanov + */ + +#ifndef BOARD_N61AP_H_ /* Include guard */ +#define BOARD_N61AP_H_ + +/* TODO: Adjust PAYLOAD_ENTRY */ +#define PAYLOAD_ENTRY 0x830000000 +#define PAYLOAD_SIZE 0x2000000 + +#endif // BOARD_N61AP_H_