diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/altera/stratix10-socdk | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/altera/stratix10-socdk')
-rw-r--r-- | roms/u-boot/board/altera/stratix10-socdk/MAINTAINERS | 8 | ||||
-rw-r--r-- | roms/u-boot/board/altera/stratix10-socdk/Makefile | 7 | ||||
-rw-r--r-- | roms/u-boot/board/altera/stratix10-socdk/socfpga.c | 7 |
3 files changed, 22 insertions, 0 deletions
diff --git a/roms/u-boot/board/altera/stratix10-socdk/MAINTAINERS b/roms/u-boot/board/altera/stratix10-socdk/MAINTAINERS new file mode 100644 index 000000000..6efd0cfc0 --- /dev/null +++ b/roms/u-boot/board/altera/stratix10-socdk/MAINTAINERS @@ -0,0 +1,8 @@ +SOCFPGA BOARD +M: Chin-Liang See <chin.liang.see@intel.com> +M: Dinh Nguyen <dinh.nguyen@intel.com> +S: Maintained +F: board/altera/stratix10-socdk/ +F: include/configs/socfpga_stratix10_socdk.h +F: configs/socfpga_stratix10_atf_defconfig +F: configs/socfpga_stratix10_defconfig diff --git a/roms/u-boot/board/altera/stratix10-socdk/Makefile b/roms/u-boot/board/altera/stratix10-socdk/Makefile new file mode 100644 index 000000000..02a9cadf7 --- /dev/null +++ b/roms/u-boot/board/altera/stratix10-socdk/Makefile @@ -0,0 +1,7 @@ +# +# Copyright (C) 2016-2017 Intel Corporation <www.intel.com> +# +# SPDX-License-Identifier: GPL-2.0 +# + +obj-y := socfpga.o diff --git a/roms/u-boot/board/altera/stratix10-socdk/socfpga.c b/roms/u-boot/board/altera/stratix10-socdk/socfpga.c new file mode 100644 index 000000000..043fc543f --- /dev/null +++ b/roms/u-boot/board/altera/stratix10-socdk/socfpga.c @@ -0,0 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2016-2018 Intel Corporation <www.intel.com> + * + */ + +#include <common.h> |