diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 22:07:57 +0200 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 22:07:57 +0200 | 
| commit | 18122019972ca639ee3b581257e3a63ff7c8efeb (patch) | |
| tree | 52f7223e7c63f43322f3eee4722743e12190a19f /include/ansi.h | |
| parent | 90639feaa0d66a204f9d03a325ab14e2f97f6cbb (diff) | |
| parent | 785881f775252940185e10fbb2d5299c9ffa6bce (diff) | |
| download | olio-uboot-2014.01-18122019972ca639ee3b581257e3a63ff7c8efeb.tar.xz olio-uboot-2014.01-18122019972ca639ee3b581257e3a63ff7c8efeb.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	drivers/video/exynos_fb.c
Diffstat (limited to 'include/ansi.h')
| -rw-r--r-- | include/ansi.h | 42 | 
1 files changed, 42 insertions, 0 deletions
| diff --git a/include/ansi.h b/include/ansi.h new file mode 100644 index 000000000..0e40b1d4e --- /dev/null +++ b/include/ansi.h @@ -0,0 +1,42 @@ +/* + * (C) Copyright 2012 + * Pali Rohár <pali.rohar@gmail.com> + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +/* + * ANSI terminal + */ + +#define ANSI_CURSOR_UP			"\e[%dA" +#define ANSI_CURSOR_DOWN		"\e[%dB" +#define ANSI_CURSOR_FORWARD		"\e[%dC" +#define ANSI_CURSOR_BACK		"\e[%dD" +#define ANSI_CURSOR_NEXTLINE		"\e[%dE" +#define ANSI_CURSOR_PREVIOUSLINE	"\e[%dF" +#define ANSI_CURSOR_COLUMN		"\e[%dG" +#define ANSI_CURSOR_POSITION		"\e[%d;%dH" +#define ANSI_CURSOR_SHOW		"\e[?25h" +#define ANSI_CURSOR_HIDE		"\e[?25l" +#define ANSI_CLEAR_CONSOLE		"\e[2J" +#define ANSI_CLEAR_LINE_TO_END		"\e[0K" +#define ANSI_CLEAR_LINE			"\e[2K" +#define ANSI_COLOR_RESET		"\e[0m" +#define ANSI_COLOR_REVERSE		"\e[7m" |