From 146df6055fb478e6491e46cb1b2940f39b181d0e Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Mon, 2 Jun 2014 12:41:57 +0000 Subject: Update morph to a version with initramfs write extension support --- tools.morph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.morph b/tools.morph index 39d98b8b..d4e6c518 100644 --- a/tools.morph +++ b/tools.morph @@ -92,7 +92,7 @@ chunks: - six - name: morph repo: baserock:baserock/morph - ref: 64263de0123f9e513a300fd179e5b84384fa5343 + ref: 1ab034dc56b8eb3fff8f8f2abf730450048e9dfc unpetrify-ref: master build-depends: - cliapp -- cgit v1.2.1 From c307efac52057ccacc1d365686bbfa5163a65be7 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 27 May 2014 15:28:49 +0000 Subject: Add example systems which use an initramfs initramfs-test.morph is embedded in the initramfs.write help, so may be removed. The initramfs-x86_64 system is the minimal system with an extra chunk added. The initramfs-utils stratum is required to contain _just_ that chunk, but the "minimal" system is much larger than I would like our initramfs to be (i.e. a statically linked binary using musl), so in future the initramfs-utils stratum may have more initramfs specific content. --- initramfs-test.morph | 17 +++++++++++++++++ initramfs-utils.morph | 14 ++++++++++++++ initramfs-x86_64.morph | 10 ++++++++++ 3 files changed, 41 insertions(+) create mode 100644 initramfs-test.morph create mode 100644 initramfs-utils.morph create mode 100644 initramfs-x86_64.morph diff --git a/initramfs-test.morph b/initramfs-test.morph new file mode 100644 index 00000000..9e69207d --- /dev/null +++ b/initramfs-test.morph @@ -0,0 +1,17 @@ +name: initramfs-test +kind: cluster +systems: +- morph: base-system-x86_64-generic + deploy: + system: + type: rawdisk + location: initramfs-system-x86_64.img + DISK_SIZE: 1G + HOSTNAME: initramfs-system + INITRAMFS_PATH: boot/initramfs.gz + subsystems: + - morph: initramfs-x86_64 + deploy: + initramfs: + type: initramfs + location: boot/initramfs.gz diff --git a/initramfs-utils.morph b/initramfs-utils.morph new file mode 100644 index 00000000..d59dcec7 --- /dev/null +++ b/initramfs-utils.morph @@ -0,0 +1,14 @@ +name: initramfs-utils +kind: stratum +description: stratum for initramfs +build-depends: +- morph: build-essential +chunks: +# A more minimal initramfs would be a single executable as /init, +# statically linked against musl. +# But, we can get away with a single script that uses busybox for now. +- name: initramfs-scripts + repo: baserock:baserock/initramfs-scripts + ref: a97dea93d28ba272613029e46a8a0b1f699729d8 + unpetrify-ref: master + build-depends: [] diff --git a/initramfs-x86_64.morph b/initramfs-x86_64.morph new file mode 100644 index 00000000..7daa81fd --- /dev/null +++ b/initramfs-x86_64.morph @@ -0,0 +1,10 @@ +name: initramfs-x86_64 +description: Initramfs for x86_64 +kind: system +arch: x86_64 +configuration-extensions: [] +strata: +- morph: build-essential + artifacts: + - build-essential-minimal +- morph: initramfs-utils -- cgit v1.2.1