diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-08 15:23:49 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-08 15:23:49 -0500 |
commit | ce022f2857714e19c6b31a023b8145782ecef5a5 (patch) | |
tree | c7a3666314cdcb3a2d3ae2a88a579dbf4ebfc3e1 /board | |
parent | 9af51fb3a505f895d64bd1f8a5967bfaa510add4 (diff) | |
parent | 8097aee3abc3b773aceea01f756a38b34b274e1e (diff) | |
download | u-boot-ce022f2857714e19c6b31a023b8145782ecef5a5.zip u-boot-ce022f2857714e19c6b31a023b8145782ecef5a5.tar.gz u-boot-ce022f2857714e19c6b31a023b8145782ecef5a5.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
Diffstat (limited to 'board')
-rw-r--r-- | board/intel/agilex-socdk/MAINTAINERS | 7 | ||||
-rw-r--r-- | board/intel/agilex-socdk/Makefile | 7 | ||||
-rw-r--r-- | board/intel/agilex-socdk/socfpga.c | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/board/intel/agilex-socdk/MAINTAINERS b/board/intel/agilex-socdk/MAINTAINERS new file mode 100644 index 0000000..b8e28f0 --- /dev/null +++ b/board/intel/agilex-socdk/MAINTAINERS @@ -0,0 +1,7 @@ +SOCFPGA BOARD +M: Ley Foon Tan <ley.foon.tan@intel.com> +M: Chee Hong Ang <chee.hong.ang@intel.com> +S: Maintained +F: board/intel/agilex-socdk/ +F: include/configs/socfpga_agilex_socdk.h +F: configs/socfpga_agilex_defconfig diff --git a/board/intel/agilex-socdk/Makefile b/board/intel/agilex-socdk/Makefile new file mode 100644 index 0000000..b86223a --- /dev/null +++ b/board/intel/agilex-socdk/Makefile @@ -0,0 +1,7 @@ +# +# Copyright (C) 2019 Intel Corporation <www.intel.com> +# +# SPDX-License-Identifier: GPL-2.0 +# + +obj-y := socfpga.o diff --git a/board/intel/agilex-socdk/socfpga.c b/board/intel/agilex-socdk/socfpga.c new file mode 100644 index 0000000..72a3e08 --- /dev/null +++ b/board/intel/agilex-socdk/socfpga.c @@ -0,0 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2019 Intel Corporation <www.intel.com> + * + */ + +#include <common.h> |