aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot-sam460ex/board/ACube/common/cmd_vesa.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot-sam460ex/board/ACube/common/cmd_vesa.c')
-rw-r--r--roms/u-boot-sam460ex/board/ACube/common/cmd_vesa.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/roms/u-boot-sam460ex/board/ACube/common/cmd_vesa.c b/roms/u-boot-sam460ex/board/ACube/common/cmd_vesa.c
new file mode 100644
index 000000000..cb39ebca4
--- /dev/null
+++ b/roms/u-boot-sam460ex/board/ACube/common/cmd_vesa.c
@@ -0,0 +1,18 @@
+#include <common.h>
+#include <command.h>
+#include <asm/cache.h>
+#include "sys_dep.h"
+#include "vesa.h"
+
+int do_vesa(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
+{
+ DECLARE_GLOBAL_DATA_PTR;
+ DoVesa(argc, argv);
+ return 0;
+}
+
+U_BOOT_CMD(
+ vesa, 5, 1, do_vesa,
+ "vesa - run a vesa bios call\n",
+ "mode"
+);