summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/board/avnet/fx12mm/fx12mm.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/roms/u-boot/board/avnet/fx12mm/fx12mm.c')
-rw-r--r--qemu/roms/u-boot/board/avnet/fx12mm/fx12mm.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/board/avnet/fx12mm/fx12mm.c b/qemu/roms/u-boot/board/avnet/fx12mm/fx12mm.c
new file mode 100644
index 000000000..92e1cfb75
--- /dev/null
+++ b/qemu/roms/u-boot/board/avnet/fx12mm/fx12mm.c
@@ -0,0 +1,34 @@
+/*
+ * (C) Copyright 2008
+ *
+ * Author: Xilinx Inc.
+ *
+ * Modified by:
+ * Georg Schardt <schardt@team-ctech.de>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <config.h>
+#include <common.h>
+#include <asm/processor.h>
+
+int checkboard(void)
+{
+ char buf[64];
+ int i;
+ int l = getenv_f("serial#", buf, sizeof(buf));
+
+ if (l < 0) {
+ printf("Avnet Virtex4 FX12 with no serial #");
+ } else {
+ printf("Avnet Virtex4 FX12 Minimodul # ");
+ for (i = 0; i < l; ++i) {
+ if (buf[i] == ' ')
+ break;
+ putc(buf[i]);
+ }
+ }
+ putc('\n');
+ return 0;
+}