- Timestamp:
- 2019-08-17T12:49:44Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 05d97eef
- Parents:
- 7749646
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-07-20 15:13:22)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-08-17 12:49:44)
- Location:
- boot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/generic/src/version.c
r7749646 r6068476 32 32 33 33 static const char *project = "HelenOS bootloader"; 34 static const char *copyright = STRING( COPYRIGHT);35 static const char *release = STRING( RELEASE);36 static const char *name = STRING( NAME);34 static const char *copyright = STRING(HELENOS_COPYRIGHT); 35 static const char *release = STRING(HELENOS_RELEASE); 36 static const char *name = STRING(HELENOS_CODENAME); 37 37 static const char *arch = STRING(KARCH); 38 38 -
boot/meson.build
r7749646 r6068476 56 56 '-D_HELENOS_SOURCE', 57 57 '-DBOOT', 58 '-D RELEASE=' + HELENOS_RELEASE,59 '-D COPYRIGHT=' + HELENOS_COPYRIGHT,60 '-D NAME=' + HELENOS_NAME,58 '-DHELENOS_RELEASE=' + HELENOS_RELEASE, 59 '-DHELENOS_COPYRIGHT=' + HELENOS_COPYRIGHT, 60 '-DHELENOS_CODENAME=' + HELENOS_CODENAME, 61 61 '-D__@0@_BITS__'.format(meson.get_cross_property('bits')), 62 62 ]
Note:
See TracChangeset
for help on using the changeset viewer.