patches and low-level development discussion
 help / color / mirror / code / Atom feed
blob 74ff64019560aae6387df0e1b3409bc174251bdb 5782 bytes (raw)
name: host/rootfs/Makefile 	 # note: path name is non-authoritative(*)

  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
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
 
# SPDX-License-Identifier: EUPL-1.2+
# SPDX-FileCopyrightText: 2021-2024 Alyssa Ross <hi@alyssa.is>
# SPDX-FileCopyrightText: 2025 Demi Marie Obenour <demiobenour@gmail.com>

.POSIX:

include ../../lib/common.mk
include file-list.mk

ROOT_FS = build

DIRS = \
	boot \
	dev \
	etc/s6-linux-init/env \
	etc/s6-linux-init/run-image/configs \
	etc/s6-linux-init/run-image/sd-notify-wrapper \
	etc/s6-linux-init/run-image/service/serial-getty/instance \
	etc/s6-linux-init/run-image/service/serial-getty/instances \
	etc/s6-linux-init/run-image/service/vm-services/instance \
	etc/s6-linux-init/run-image/service/vm-services/instances \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/dbus/data \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/dbus/env \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/vhost-user-fs/data \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/vhost-user-fs/env \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/vhost-user-gpu/env \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/xdg-desktop-portal-spectrum-host/data \
	etc/s6-linux-init/run-image/service/vm-services/template/data/service/xdg-desktop-portal-spectrum-host/env \
	etc/s6-linux-init/run-image/service/vmm/instance \
	etc/s6-linux-init/run-image/service/vmm/instances \
	etc/s6-linux-init/run-image/service/vmm/template/data \
	etc/s6-linux-init/run-image/service/vmm/template/env \
	etc/s6-linux-init/run-image/user \
	etc/s6-linux-init/run-image/vm/by-id \
	etc/s6-linux-init/run-image/vm/by-name \
	ext \
	home \
	proc \
	run \
	sys \
	tmp

FIFOS = etc/s6-linux-init/run-image/service/s6-svscan-log/fifo

BUILD_FILES = build/etc/s6-rc build/etc/os-release build/etc/update-url

# This rule produces three files but Make only (portably)
# supports one output per rule.  Instead of resorting to temporary
# files, a timestamp file is created as the last step.  The actual
# outputs are produced as side-effects.
build/verity-timestamp: $(ROOT_FS_IMAGE)
	$(VERITYSETUP) format \
		--root-hash-file $(ROOT_FS_VERITY_ROOTHASH) \
		-- $(ROOT_FS_IMAGE) $(ROOT_FS_VERITY)
# Add trailing newline so that the read < $(ROOT_FS_VERITY_ROOTHASH) succeeds.
# Without the trailing newline it assumes a premature EOF happened and returns
# a nonzero status.
	echo >> $(ROOT_FS_VERITY_ROOTHASH)
	touch -- $@

$(ROOT_FS_IMAGE): ../../scripts/make-erofs.sh $(PACKAGES_FILE) $(FILES) $(BUILD_FILES) build/empty build/fifo file-list.mk
	mkdir -p $(ROOT_FS) && \
	{ \
	    cat $(PACKAGES_FILE) ;\
	    printf '%s\n%s\n' "$$UPDATE_SIGNING_KEY" /etc/systemd/import-pubring.gpg; \
	    for file in $(FILES) $(LINKS); do printf '%s\n%s\n' $$file "$${file#image/}"; done ;\
	    for file in $(BUILD_FILES); do printf '%s\n%s\n' $$file $${file#build/}; done ;\
	    printf 'build/empty\n%s\n' $(DIRS) ;\
	    printf 'build/fifo\n%s\n' $(FIFOS) ;\
	} | ../../scripts/make-erofs.sh $@

build/etc/update-url:
	mkdir -p build/etc
	# might have metacharacters, so avoid interpolation
	printf %s\\n "$${UPDATE_URL:?'update URL empty or missing'}" > build/etc/update-url

build/etc/os-release:
	mkdir -p build/etc
	sed 's/@VERSION@/$(VERSION)/g' < os-release.in > build/etc/os-release

build/fifo:
	mkdir -p build
	mkfifo -m 0600 $@

build/empty:
	mkdir -p $@

# s6-rc-compile's input is a directory, but that doesn't play nice
# with Make, because it won't know to update if some file in the
# directory is changed, or a file is created or removed in a
# subdirectory.  Using the whole source directory could also end up
# including files that aren't intended to be part of the input, like
# temporary editor files or .license files.  So for all these reasons,
# only explicitly listed files are made available to s6-rc-compile.
build/etc/s6-rc: $(S6_RC_FILES) file-list.mk
	mkdir -p $$(dirname $@)
	rm -rf $@
	set -uo pipefail && dir=$$(mktemp -d) && \
	    { tar -c $(S6_RC_FILES) | tar -C $$dir -x --strip-components 3; } && \
	    s6-rc-compile $@ $$dir; \
	    exit=$$?; rm -r $$dir; exit $$exit

clean:
	-chmod -Rf +w build
	rm -rf build
.PHONY: clean

build/live.img: ../../scripts/format-uuid.awk ../../scripts/make-gpt.sh ../../scripts/sfdisk-field.awk build/verity-timestamp $(ROOT_FS_IMAGES)
	uuids=$$(awk -f ../../scripts/format-uuid.awk < $(ROOT_FS_VERITY_ROOTHASH)) && \
	set -u -- $$uuids && \
	bash ../../scripts/make-gpt.sh $@.tmp \
	    $(ROOT_FS_VERITY):verity:$$2:Spectrum_'$(VERSION).verity' \
	    $(ROOT_FS_IMAGE):root:$$1:Spectrum_'$(VERSION)'
	mv $@.tmp $@

debug:
	$(GDB) -q \
	    -ex 'set substitute-path .. $(LINUX_SRC)' \
	    -ex 'target remote build/gdb.sock' \
	    $(VMLINUX)
.PHONY: debug

run: build/live.img build/rootfs.verity.roothash
	@set -x && \
	ext="$$(mktemp build/spectrum-rootfs-extfs.XXXXXXXXXX.img)" && \
	truncate -s 10G "$$ext" && \
	mkfs.btrfs "$$ext" && \
	exec 3<>"$$ext" && \
	rm -f "$$ext" && \
	set +x && \
	exec ../../scripts/run-qemu.sh -cpu max -m 4G \
	    -machine virtualization=on \
	    -kernel $(KERNEL) \
	    -initrd $(INITRAMFS) \
	    -gdb unix:build/gdb.sock,server,nowait \
	    -qmp unix:build/vmm.sock,server,nowait \
	    -monitor vc \
	    -parallel none \
	    -chardev vc,id=virtiocon0 \
	    -device virtio-serial \
	    -device virtconsole,chardev=virtiocon0 \
	    -drive file=build/live.img,if=virtio,format=raw,readonly=on \
	    -drive file=/proc/self/fd/3,if=virtio,format=raw \
	    -append "earlycon console=hvc0 roothash=$$(< $(ROOT_FS_VERITY_ROOTHASH)) intel_iommu=on nokaslr" \
	    -device virtio-keyboard \
	    -device virtio-mouse \
	    -device virtio-gpu \
	    -netdev user,id=net0 \
	    -device e1000e,netdev=net0 \
	    -vga none \
	    -device vhost-vsock-pci,guest-cid=3
.PHONY: run

debug log:

solving 74ff64019560aae6387df0e1b3409bc174251bdb ...
found 74ff64019560aae6387df0e1b3409bc174251bdb in https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-11-40c438d2dcaf@gmail.com/ ||
	https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-11-fd746748febd@gmail.com/
found a6d9f23e9f5277b7c79a53105eb2dfe1bab1451e in https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-8-40c438d2dcaf@gmail.com/ ||
	https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-8-fd746748febd@gmail.com/
found ab24263c6f327e47cd1d012ca8d729b0ea5eb8f3 in https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-5-40c438d2dcaf@gmail.com/ ||
	https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-5-fd746748febd@gmail.com/
found b2c0c6176fe0de4a99d1a3737d50054b532af598 in https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-4-40c438d2dcaf@gmail.com/ ||
	https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-4-fd746748febd@gmail.com/
found f45758041f2f682618cb0f9e54e5a74f0b49874e in https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-2-40c438d2dcaf@gmail.com/ ||
	https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-2-fd746748febd@gmail.com/
found 4cb048ac08b3265b0435d6ff6fc612a58c169ce9 in https://spectrum-os.org/git/spectrum
preparing index
index prepared:
100644 4cb048ac08b3265b0435d6ff6fc612a58c169ce9	host/rootfs/Makefile

applying [1/5] https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-2-40c438d2dcaf@gmail.com/
diff --git a/host/rootfs/Makefile b/host/rootfs/Makefile
index 4cb048ac08b3265b0435d6ff6fc612a58c169ce9..f45758041f2f682618cb0f9e54e5a74f0b49874e 100644

Checking patch host/rootfs/Makefile...
Applied patch host/rootfs/Makefile cleanly.

skipping https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-2-fd746748febd@gmail.com/ for f45758041f2f682618cb0f9e54e5a74f0b49874e
index at:
100644 f45758041f2f682618cb0f9e54e5a74f0b49874e	host/rootfs/Makefile

applying [2/5] https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-4-40c438d2dcaf@gmail.com/
diff --git a/host/rootfs/Makefile b/host/rootfs/Makefile
index f45758041f2f682618cb0f9e54e5a74f0b49874e..b2c0c6176fe0de4a99d1a3737d50054b532af598 100644

Checking patch host/rootfs/Makefile...
Applied patch host/rootfs/Makefile cleanly.

skipping https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-4-fd746748febd@gmail.com/ for b2c0c6176fe0de4a99d1a3737d50054b532af598
index at:
100644 b2c0c6176fe0de4a99d1a3737d50054b532af598	host/rootfs/Makefile

applying [3/5] https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-5-40c438d2dcaf@gmail.com/
diff --git a/host/rootfs/Makefile b/host/rootfs/Makefile
index b2c0c6176fe0de4a99d1a3737d50054b532af598..ab24263c6f327e47cd1d012ca8d729b0ea5eb8f3 100644

Checking patch host/rootfs/Makefile...
Applied patch host/rootfs/Makefile cleanly.

skipping https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-5-fd746748febd@gmail.com/ for ab24263c6f327e47cd1d012ca8d729b0ea5eb8f3
index at:
100644 ab24263c6f327e47cd1d012ca8d729b0ea5eb8f3	host/rootfs/Makefile

applying [4/5] https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-8-40c438d2dcaf@gmail.com/
diff --git a/host/rootfs/Makefile b/host/rootfs/Makefile
index ab24263c6f327e47cd1d012ca8d729b0ea5eb8f3..a6d9f23e9f5277b7c79a53105eb2dfe1bab1451e 100644

Checking patch host/rootfs/Makefile...
Applied patch host/rootfs/Makefile cleanly.

skipping https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-8-fd746748febd@gmail.com/ for a6d9f23e9f5277b7c79a53105eb2dfe1bab1451e
index at:
100644 a6d9f23e9f5277b7c79a53105eb2dfe1bab1451e	host/rootfs/Makefile

applying [5/5] https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v4-11-40c438d2dcaf@gmail.com/
diff --git a/host/rootfs/Makefile b/host/rootfs/Makefile
index a6d9f23e9f5277b7c79a53105eb2dfe1bab1451e..74ff64019560aae6387df0e1b3409bc174251bdb 100644

Checking patch host/rootfs/Makefile...
Applied patch host/rootfs/Makefile cleanly.

skipping https://inbox.spectrum-os.org/spectrum-devel/20251126-updates-v5-11-fd746748febd@gmail.com/ for 74ff64019560aae6387df0e1b3409bc174251bdb
index at:
100644 74ff64019560aae6387df0e1b3409bc174251bdb	host/rootfs/Makefile

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).