Changeset 2109961 in mainline
- Timestamp:
- 2020-11-08T22:29:06Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b41564c
- Parents:
- a09d401
- Files:
-
- 3 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
meson/part/initrd_manifest/meson.build
ra09d401 r2109961 60 60 if CONFIG_FB 61 61 rd_essential += [ 62 'app/ vlaunch',62 'app/launcher', 63 63 'app/vterm', 64 64 -
uspace/app/init/init.c
ra09d401 r2109961 472 472 if (rc == EOK) { 473 473 app_start("/app/barber"); 474 app_start("/app/ vlaunch");474 app_start("/app/launcher"); 475 475 app_start("/app/vterm"); 476 476 } -
uspace/app/launcher/doc/doxygroups.h
ra09d401 r2109961 1 /** @addtogroup vlaunch vlaunch1 /** @addtogroup launcher launcher 2 2 * @brief Application launcher 3 3 * @ingroup apps -
uspace/app/launcher/launcher.c
ra09d401 r2109961 28 28 */ 29 29 30 /** @addtogroup vlaunch30 /** @addtogroup launcher 31 31 * @{ 32 32 */ … … 57 57 58 58 #include "images.h" 59 #include " vlaunch.h"60 61 #define NAME " vlaunch"59 #include "launcher.h" 60 61 #define NAME "launcher" 62 62 63 63 static char *display_spec = UI_DISPLAY_DEFAULT; … … 105 105 app_launch("/app/uidemo"); 106 106 } else if (pbutton == launcher->pb4) { 107 app_launch("/app/ vlaunch");107 app_launch("/app/launcher"); 108 108 } 109 109 } -
uspace/app/launcher/launcher.h
ra09d401 r2109961 27 27 */ 28 28 29 /** @addtogroup vlaunch29 /** @addtogroup launcher 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef UIDEMO_H37 #define UIDEMO_H36 #ifndef LAUNCHER_H 37 #define LAUNCHER_H 38 38 39 39 #include <display.h> -
uspace/app/launcher/meson.build
ra09d401 r2109961 31 31 _images = files('gfx/helenos.tga') 32 32 33 _images_zip = custom_target(' vlaunch_images.zip',33 _images_zip = custom_target('launcher_images.zip', 34 34 input : _images, 35 35 output : [ 'images.zip' ], 36 36 command : [ mkarray, '@OUTDIR@', 'images', 'image', uspace_as_prolog, '.data', '@INPUT@' ], 37 37 ) 38 _imgs_s = custom_target(' vlaunch_images.s',38 _imgs_s = custom_target('launcher_images.s', 39 39 input : _images_zip, 40 40 output : [ 'images.s' ], … … 42 42 capture : true, 43 43 ) 44 _imgs_h = custom_target(' vlaunch_images.h',44 _imgs_h = custom_target('launcher_images.h', 45 45 input : _images_zip, 46 46 output : [ 'images.h' ], … … 48 48 capture : true, 49 49 ) 50 _imgs_desc_c = custom_target(' vlaunch_images_desc.c',50 _imgs_desc_c = custom_target('launcher_images_desc.c', 51 51 input : _images_zip, 52 52 output : [ 'images_desc.c' ], … … 55 55 ) 56 56 57 src = [ files(' vlaunch.c'), _imgs_s, _imgs_h, _imgs_desc_c ]57 src = [ files('launcher.c'), _imgs_s, _imgs_h, _imgs_desc_c ] -
uspace/app/meson.build
ra09d401 r2109961 54 54 'killall', 55 55 'kio', 56 'launcher', 56 57 'loc', 57 58 'logset', … … 92 93 'vdemo', 93 94 'viewer', 94 'vlaunch',95 95 'vol', 96 96 'vterm',
Note:
See TracChangeset
for help on using the changeset viewer.