diff options
Diffstat (limited to 'src/hci')
| -rw-r--r-- | src/hci/commands/autoboot_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/config_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/dhcp_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/ifmgmt_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/image_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/login_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/nvo_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/route_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/sanboot_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/editstring.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/ansi_screen.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/clear.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/colour.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/cursor.h | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/mucurses.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/mucurses.h | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/print.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/widgets/editbox.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/winattrs.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/wininit.c | 2 | ||||
| -rw-r--r-- | src/hci/readline.c | 2 | ||||
| -rw-r--r-- | src/hci/shell.c | 2 | ||||
| -rw-r--r-- | src/hci/shell_banner.c | 2 | ||||
| -rw-r--r-- | src/hci/strerror.c | 2 | ||||
| -rw-r--r-- | src/hci/tui/login_ui.c | 2 | ||||
| -rw-r--r-- | src/hci/tui/settings_ui.c | 2 |
26 files changed, 52 insertions, 0 deletions
diff --git a/src/hci/commands/autoboot_cmd.c b/src/hci/commands/autoboot_cmd.c index 0e6f2948d..95b172d10 100644 --- a/src/hci/commands/autoboot_cmd.c +++ b/src/hci/commands/autoboot_cmd.c @@ -2,6 +2,8 @@ #include <gpxe/command.h> #include <usr/autoboot.h> +FILE_LICENCE ( GPL2_OR_LATER ); + static int autoboot_exec ( int argc, char **argv ) { if ( argc != 1 ) { diff --git a/src/hci/commands/config_cmd.c b/src/hci/commands/config_cmd.c index 87abb05a9..a9e1f1698 100644 --- a/src/hci/commands/config_cmd.c +++ b/src/hci/commands/config_cmd.c @@ -4,6 +4,8 @@ #include <gpxe/settings.h> #include <gpxe/settings_ui.h> +FILE_LICENCE ( GPL2_OR_LATER ); + static int config_exec ( int argc, char **argv ) { char *settings_name; struct settings *settings; diff --git a/src/hci/commands/dhcp_cmd.c b/src/hci/commands/dhcp_cmd.c index 9b577c86e..96aac8d4d 100644 --- a/src/hci/commands/dhcp_cmd.c +++ b/src/hci/commands/dhcp_cmd.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdio.h> #include <stdint.h> #include <stdlib.h> diff --git a/src/hci/commands/ifmgmt_cmd.c b/src/hci/commands/ifmgmt_cmd.c index f2508e556..586fc5794 100644 --- a/src/hci/commands/ifmgmt_cmd.c +++ b/src/hci/commands/ifmgmt_cmd.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdio.h> #include <getopt.h> #include <gpxe/netdevice.h> diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c index 6d8b59081..68f1e87d5 100644 --- a/src/hci/commands/image_cmd.c +++ b/src/hci/commands/image_cmd.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdint.h> #include <stdlib.h> #include <stdio.h> diff --git a/src/hci/commands/login_cmd.c b/src/hci/commands/login_cmd.c index e425247da..0da2497a7 100644 --- a/src/hci/commands/login_cmd.c +++ b/src/hci/commands/login_cmd.c @@ -3,6 +3,8 @@ #include <gpxe/command.h> #include <gpxe/login_ui.h> +FILE_LICENCE ( GPL2_OR_LATER ); + static int login_exec ( int argc, char **argv ) { int rc; diff --git a/src/hci/commands/nvo_cmd.c b/src/hci/commands/nvo_cmd.c index c0c07280b..5eb2f06f5 100644 --- a/src/hci/commands/nvo_cmd.c +++ b/src/hci/commands/nvo_cmd.c @@ -7,6 +7,8 @@ #include <gpxe/settings.h> #include <gpxe/command.h> +FILE_LICENCE ( GPL2_OR_LATER ); + static int show_exec ( int argc, char **argv ) { char buf[256]; int rc; diff --git a/src/hci/commands/route_cmd.c b/src/hci/commands/route_cmd.c index 227682cb4..4372e34f5 100644 --- a/src/hci/commands/route_cmd.c +++ b/src/hci/commands/route_cmd.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdio.h> #include <getopt.h> #include <gpxe/command.h> diff --git a/src/hci/commands/sanboot_cmd.c b/src/hci/commands/sanboot_cmd.c index d5bbfb859..783b747b2 100644 --- a/src/hci/commands/sanboot_cmd.c +++ b/src/hci/commands/sanboot_cmd.c @@ -4,6 +4,8 @@ #include <gpxe/command.h> #include <usr/autoboot.h> +FILE_LICENCE ( GPL2_OR_LATER ); + /** * "sanboot" command syntax message * diff --git a/src/hci/editstring.c b/src/hci/editstring.c index 347249f7c..648f33893 100644 --- a/src/hci/editstring.c +++ b/src/hci/editstring.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <assert.h> #include <string.h> #include <gpxe/keys.h> diff --git a/src/hci/mucurses/ansi_screen.c b/src/hci/mucurses/ansi_screen.c index 468bac024..51fc7c904 100644 --- a/src/hci/mucurses/ansi_screen.c +++ b/src/hci/mucurses/ansi_screen.c @@ -2,6 +2,8 @@ #include <curses.h> #include <console.h> +FILE_LICENCE ( GPL2_OR_LATER ); + static void ansiscr_reset(struct _curses_screen *scr) __nonnull; static void ansiscr_movetoyx(struct _curses_screen *scr, unsigned int y, unsigned int x) __nonnull; diff --git a/src/hci/mucurses/clear.c b/src/hci/mucurses/clear.c index 1813939b1..79b296cfe 100644 --- a/src/hci/mucurses/clear.c +++ b/src/hci/mucurses/clear.c @@ -8,6 +8,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + /** * Clear a window to the bottom from current cursor position * diff --git a/src/hci/mucurses/colour.c b/src/hci/mucurses/colour.c index 2310641ea..c1359c868 100644 --- a/src/hci/mucurses/colour.c +++ b/src/hci/mucurses/colour.c @@ -1,5 +1,7 @@ #include <curses.h> +FILE_LICENCE ( GPL2_OR_LATER ); + struct colour_pair { short fcol; short bcol; diff --git a/src/hci/mucurses/cursor.h b/src/hci/mucurses/cursor.h index af86519ca..16b7d27c2 100644 --- a/src/hci/mucurses/cursor.h +++ b/src/hci/mucurses/cursor.h @@ -7,6 +7,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + struct cursor_pos { unsigned int y, x; }; diff --git a/src/hci/mucurses/mucurses.c b/src/hci/mucurses/mucurses.c index 3620d08bd..087ebcc34 100644 --- a/src/hci/mucurses/mucurses.c +++ b/src/hci/mucurses/mucurses.c @@ -8,6 +8,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + static void _wupdcurs ( WINDOW *win ) __nonnull; void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull; void _wputc ( WINDOW *win, char c, int wrap ) __nonnull; diff --git a/src/hci/mucurses/mucurses.h b/src/hci/mucurses/mucurses.h index 1476733f3..7ac1086ac 100644 --- a/src/hci/mucurses/mucurses.h +++ b/src/hci/mucurses/mucurses.h @@ -7,6 +7,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + #define WRAP 0 #define NOWRAP 1 diff --git a/src/hci/mucurses/print.c b/src/hci/mucurses/print.c index 9fca30882..1608c0a78 100644 --- a/src/hci/mucurses/print.c +++ b/src/hci/mucurses/print.c @@ -10,6 +10,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + /** * Add a single-byte character and rendition to a window and advance * the cursor diff --git a/src/hci/mucurses/widgets/editbox.c b/src/hci/mucurses/widgets/editbox.c index a52089ce7..ee7d609db 100644 --- a/src/hci/mucurses/widgets/editbox.c +++ b/src/hci/mucurses/widgets/editbox.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <string.h> #include <assert.h> #include <gpxe/editbox.h> diff --git a/src/hci/mucurses/winattrs.c b/src/hci/mucurses/winattrs.c index 15f97326b..f549d7519 100644 --- a/src/hci/mucurses/winattrs.c +++ b/src/hci/mucurses/winattrs.c @@ -6,6 +6,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + /** * Get the background rendition attributes for a window * diff --git a/src/hci/mucurses/wininit.c b/src/hci/mucurses/wininit.c index cd27f9fea..782e7b5c6 100644 --- a/src/hci/mucurses/wininit.c +++ b/src/hci/mucurses/wininit.c @@ -7,6 +7,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + /** * Initialise console environment * diff --git a/src/hci/readline.c b/src/hci/readline.c index ff7a76799..e5699d519 100644 --- a/src/hci/readline.c +++ b/src/hci/readline.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdio.h> #include <string.h> #include <stdlib.h> diff --git a/src/hci/shell.c b/src/hci/shell.c index 74787e3c1..5bedbdc98 100644 --- a/src/hci/shell.c +++ b/src/hci/shell.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdint.h> #include <stdlib.h> #include <stdio.h> diff --git a/src/hci/shell_banner.c b/src/hci/shell_banner.c index 3271c4835..8afefe3df 100644 --- a/src/hci/shell_banner.c +++ b/src/hci/shell_banner.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdio.h> #include <console.h> #include <unistd.h> diff --git a/src/hci/strerror.c b/src/hci/strerror.c index 8e7d878b6..4b16608c0 100644 --- a/src/hci/strerror.c +++ b/src/hci/strerror.c @@ -18,6 +18,8 @@ * */ +FILE_LICENCE ( GPL2_OR_LATER ); + /** * Find error description * diff --git a/src/hci/tui/login_ui.c b/src/hci/tui/login_ui.c index c14a2c03c..b80bf27b7 100644 --- a/src/hci/tui/login_ui.c +++ b/src/hci/tui/login_ui.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + /** @file * * Login UI diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c index 83a56d3c0..74ce6afb1 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -16,6 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +FILE_LICENCE ( GPL2_OR_LATER ); + #include <stdio.h> #include <stdarg.h> #include <unistd.h> |
