lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since 58ef532 was 5631c9c, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago |
sparc64 boot
|
-
Property mode
set to
100644
|
File size:
482 bytes
|
Line | |
---|
1 | distdir = custom_target('distdir',
|
---|
2 | output: 'distdir',
|
---|
3 | input: [
|
---|
4 | 'build_dist.sh',
|
---|
5 | boot_image,
|
---|
6 | 'a.out/isofs.b',
|
---|
7 | 'a.out/second.b',
|
---|
8 | 'silo.conf'
|
---|
9 |
|
---|
10 | ],
|
---|
11 | command: [ sh, '@INPUT0@', '@INPUT1@', meson.current_source_dir(), '@OUTPUT@' ],
|
---|
12 | )
|
---|
13 |
|
---|
14 | image_iso = custom_target('image.iso',
|
---|
15 | output: 'image.iso',
|
---|
16 | input: [ distdir, 'a.out/isofs.b' ],
|
---|
17 | command: [
|
---|
18 | genisoimage,
|
---|
19 | '-f',
|
---|
20 | '-G', '@INPUT1@',
|
---|
21 | '-B', '...',
|
---|
22 | '-r',
|
---|
23 | '-o', '@OUTPUT@',
|
---|
24 | '@INPUT0@',
|
---|
25 | ],
|
---|
26 | )
|
---|
27 |
|
---|
28 | POST_INPUT = image_iso
|
---|
Note:
See
TracBrowser
for help on using the repository browser.