forked from rosa/hakurei
This enables deferring evaluation of azalea-based packages and fixes the longstanding quirk of version being disjoint from other metadata. Signed-off-by: Ophestra <cat@gensokyo.uk>
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package rosa
|
|
|
|
import (
|
|
"hakurei.app/fhs"
|
|
"hakurei.app/internal/pkg"
|
|
)
|
|
|
|
func init() {
|
|
meta := Metadata{
|
|
Name: "earlyinit",
|
|
Description: "Rosa OS initramfs init program",
|
|
Version: Unversioned,
|
|
}
|
|
native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
return &meta, t.newHakurei("-early-init", `
|
|
mkdir -p /work/system/libexec/hakurei/
|
|
|
|
echo '# Building earlyinit.'
|
|
go build -trimpath -v -o /work/system/libexec/hakurei -ldflags="-s -w
|
|
-buildid=
|
|
-linkmode external
|
|
-extldflags=-static
|
|
-X hakurei.app/internal/info.buildVersion=${HAKUREI_VERSION}
|
|
" ./cmd/earlyinit
|
|
echo
|
|
`, false)
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
meta := Metadata{
|
|
Name: "system-image",
|
|
Description: "Rosa OS system image",
|
|
Version: Unversioned,
|
|
}
|
|
native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
return &meta, t.New("system.img", TNoToolchain, t.Append(nil,
|
|
SquashfsTools,
|
|
), nil, nil, `
|
|
mksquashfs /mnt/system /work/system.img
|
|
`, pkg.Path(fhs.AbsRoot.Append("mnt"), false, t.Append(nil,
|
|
Musl,
|
|
Mksh,
|
|
Toybox,
|
|
|
|
Kmod,
|
|
Kernel,
|
|
Firmware,
|
|
)...))
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
meta := Metadata{
|
|
Name: "initramfs-image",
|
|
Description: "Rosa OS initramfs image",
|
|
Version: Unversioned,
|
|
}
|
|
native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
return &meta, t.New("initramfs", TNoToolchain, t.Append(nil,
|
|
Zstd,
|
|
EarlyInit,
|
|
GenInitCPIO,
|
|
), nil, nil, `
|
|
gen_init_cpio -t 4294967295 -c /usr/src/initramfs | zstd > /work/initramfs.zst
|
|
`, pkg.Path(AbsUsrSrc.Append("initramfs"), false, pkg.NewFile("initramfs", []byte(`
|
|
dir /dev 0755 0 0
|
|
nod /dev/null 0666 0 0 c 1 3
|
|
nod /dev/console 0600 0 0 c 5 1
|
|
file /init /system/libexec/hakurei/earlyinit 0555 0 0
|
|
`))))
|
|
})
|
|
}
|