summaryrefslogtreecommitdiff
path: root/morphology_examples.txt
blob: 5cabeec6c10ee7469a87d6dea0bc5934c808138d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Example chunk (simplified commands):

    {
        "kind": "chunk",
        "configure-commands": [
            "mkdir o",
            "cd o && ../libc/configure --prefix=/usr"
        ],
        "build-commands": [
            "cd o && make"
        ],
        "install-commands": [
            "cd o && make install_root=\"$DESTDIR\" install"
        ]
    }

Example stratum:

    {
        "name": "foundation",
        "kind": "stratum",
        "chunks": [
            {
                "ref": "baserock/bootstrap",
                "build-depends": [],
            },
            {
                "repo": "linux",
                "ref": "baserock/morph",
                "build-depends": ["fhs-dirs"]
            },
            {
                "ref": "baserock/bootstrap",
                "build-depends": [
                  "linux-api-headers"
                ]
            },
            {
                "ref": "baserock/bootstrap",
                "build-depends": [
                  "fhs-dirs",
                  "linux-api-headers"
                ]
            }
        ]
    }

Example system:

    {
        "kind": "system",
	"arch": "arm",
	"system-kind": "syslinux-disk",
        "disk-size": "1G",
        "strata": [
            "foundation",
            "linux-stratum"
        ]
    }