summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe')
-rw-r--r--src/include/ipxe/console.h8
-rw-r--r--src/include/ipxe/fbcon.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/src/include/ipxe/console.h b/src/include/ipxe/console.h
index ab39cbfc1..6696a5b8d 100644
--- a/src/include/ipxe/console.h
+++ b/src/include/ipxe/console.h
@@ -28,6 +28,14 @@ struct console_configuration {
unsigned int height;
/** Colour depth */
unsigned int bpp;
+ /** Left margin */
+ unsigned int left;
+ /** Right margin */
+ unsigned int right;
+ /** Top margin */
+ unsigned int top;
+ /** Bottom margin */
+ unsigned int bottom;
/** Background picture, if any */
struct pixel_buffer *pixbuf;
};
diff --git a/src/include/ipxe/fbcon.h b/src/include/ipxe/fbcon.h
index 007e7e726..0538449ac 100644
--- a/src/include/ipxe/fbcon.h
+++ b/src/include/ipxe/fbcon.h
@@ -145,6 +145,7 @@ struct fbcon {
extern int fbcon_init ( struct fbcon *fbcon, userptr_t start,
struct fbcon_geometry *pixel,
+ struct fbcon_margin *margin,
struct fbcon_colour_map *map,
struct fbcon_font *font,
struct pixel_buffer *pixbuf );