diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-11-01 13:10:27 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-11-01 13:10:27 +0100 |
commit | ac64e2ff1a3fd50f3c602f31b23c56a16b1f3ca6 (patch) | |
tree | d418e2fb8c1f7a8638b499fdf6358ad237470fcd /com32 | |
parent | c2f4ec7d2a22c57853b6616d4ab49d79c6744d25 (diff) | |
download | syslinux.git-ac64e2ff1a3fd50f3c602f31b23c56a16b1f3ca6.tar.gz syslinux.git-ac64e2ff1a3fd50f3c602f31b23c56a16b1f3ca6.tar.xz syslinux.git-ac64e2ff1a3fd50f3c602f31b23c56a16b1f3ca6.zip |
hdt: Adding core developper role
Impact: Visual
Pierre is more than a contributor ;)
Diffstat (limited to 'com32')
-rw-r--r-- | com32/hdt/hdt-cli-hdt.c | 11 | ||||
-rw-r--r-- | com32/hdt/hdt-menu-about.c | 17 | ||||
-rw-r--r-- | com32/hdt/hdt.h | 5 |
3 files changed, 20 insertions, 13 deletions
diff --git a/com32/hdt/hdt-cli-hdt.c b/com32/hdt/hdt-cli-hdt.c index 1a2df78e..a99bb125 100644 --- a/com32/hdt/hdt-cli-hdt.c +++ b/com32/hdt/hdt-cli-hdt.c @@ -241,13 +241,14 @@ void main_show_hdt(int argc __unused, char **argv __unused, { reset_more_printf(); more_printf("HDT\n"); - more_printf(" Product : %s\n", PRODUCT_NAME); - more_printf(" Version : %s\n", VERSION); - more_printf(" Author : %s\n", AUTHOR); - more_printf(" Contact : %s\n", CONTACT); + more_printf(" Product : %s\n", PRODUCT_NAME); + more_printf(" Version : %s\n", VERSION); + more_printf(" Project Leader : %s\n", AUTHOR); + more_printf(" Contact : %s\n", CONTACT); + more_printf(" Core Developer : %s\n", CORE_DEVELOPER); char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; for (int c = 0; c < NB_CONTRIBUTORS; c++) { - more_printf(" Contributor : %s\n", contributors[c]); + more_printf(" Contributor : %s\n", contributors[c]); } } diff --git a/com32/hdt/hdt-menu-about.c b/com32/hdt/hdt-menu-about.c index f19dc361..04f3c9ae 100644 --- a/com32/hdt/hdt-menu-about.c +++ b/com32/hdt/hdt-menu-about.c @@ -39,29 +39,34 @@ void compute_aboutmenu(struct s_my_menu *menu) set_menu_pos(SUBMENU_Y, SUBMENU_X); - snprintf(buffer, sizeof buffer, "Product : %s", PRODUCT_NAME); + snprintf(buffer, sizeof buffer, "Product : %s", PRODUCT_NAME); snprintf(statbuffer, sizeof statbuffer, "Product : %s", PRODUCT_NAME); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; - snprintf(buffer, sizeof buffer, "Version : %s", VERSION); + snprintf(buffer, sizeof buffer, "Version : %s", VERSION); snprintf(statbuffer, sizeof statbuffer, "Version : %s", VERSION); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; - snprintf(buffer, sizeof buffer, "Author : %s", AUTHOR); - snprintf(statbuffer, sizeof statbuffer, "Author : %s", AUTHOR); + snprintf(buffer, sizeof buffer, "Project Leader : %s", AUTHOR); + snprintf(statbuffer, sizeof statbuffer, "Project Leader : %s", AUTHOR); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; - snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT); + snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT); snprintf(statbuffer, sizeof statbuffer, "Contact : %s", CONTACT); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; + snprintf(buffer, sizeof buffer, "Core Developer : %s", CORE_DEVELOPER); + snprintf(statbuffer, sizeof statbuffer, "Core Developer : %s", CORE_DEVELOPER); + add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); + menu->items_count++; + char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; for (int c=0; c<NB_CONTRIBUTORS; c++) { - snprintf(buffer, sizeof buffer, "Contributor : %s", contributors[c]); + snprintf(buffer, sizeof buffer, "Contributor : %s", contributors[c]); snprintf(statbuffer, sizeof statbuffer, "Contributor : %s", contributors[c]); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; diff --git a/com32/hdt/hdt.h b/com32/hdt/hdt.h index e7015d02..28601e9a 100644 --- a/com32/hdt/hdt.h +++ b/com32/hdt/hdt.h @@ -31,10 +31,11 @@ #define PRODUCT_NAME "Hardware Detection Tool" #define AUTHOR "Erwan Velu" +#define CORE_DEVELOPER "Pierre-Alexandre Meyer" #define CONTACT "hdt@zytor.com" #define VERSION "0.3.5-pre1" -#define NB_CONTRIBUTORS 3 -#define CONTRIBUTORS {"Pierre-Alexandre Meyer", "Sebastien Gonzalve", "Gert Hulselmans"} +#define NB_CONTRIBUTORS 2 +#define CONTRIBUTORS {"Sebastien Gonzalve", "Gert Hulselmans"} #define ATTR_PACKED __attribute__((packed)) |