mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 06:00:07 +00:00
soc: apple: Add basic support for Apple T7000 (aka A8)
Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
This commit is contained in:
parent
6b4830e362
commit
abb3a2cf4a
9
include/soc/t7000.h
Normal file
9
include/soc/t7000.h
Normal file
@ -0,0 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (c) 2022, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef T7000_H_ /* Include guard */
|
||||
#define T7000_H_
|
||||
|
||||
#endif // T7000_H_
|
@ -32,6 +32,11 @@ ifeq ($(SOC),exynos8895)
|
||||
brand_name=exynos
|
||||
endif
|
||||
|
||||
# Apple
|
||||
ifeq ($(SOC),t7000)
|
||||
brand_name=apple
|
||||
endif
|
||||
|
||||
all: $(brand_name)/$(SOC).o copy-soc
|
||||
|
||||
copy-soc:
|
||||
|
10
soc/apple/t7000.c
Normal file
10
soc/apple/t7000.c
Normal file
@ -0,0 +1,10 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (c) 2022, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
||||
*/
|
||||
|
||||
#include <soc/t7000.h>
|
||||
|
||||
void soc_init(void) {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user