aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/dtc.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/dtc.go')
-rw-r--r--internal/rosa/dtc.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/internal/rosa/dtc.go b/internal/rosa/dtc.go
deleted file mode 100644
index 7e830a37..00000000
--- a/internal/rosa/dtc.go
+++ /dev/null
@@ -1,41 +0,0 @@
-package rosa
-
-import "hakurei.app/internal/pkg"
-
-func (t Toolchain) newDTC() (pkg.Artifact, string) {
- const (
- version = "1.7.2"
- checksum = "vUoiRynPyYRexTpS6USweT5p4SVHvvVJs8uqFkkVD-YnFjwf6v3elQ0-Etrh00Dt"
- )
- return t.NewPackage("dtc", version, newTar(
- "https://git.kernel.org/pub/scm/utils/dtc/dtc.git/snapshot/"+
- "dtc-v"+version+".tar.gz",
- checksum,
- pkg.TarGzip,
- ), &PackageAttr{
- // works around buggy test:
- // fdtdump-runtest.sh /usr/src/dtc/tests/fdtdump.dts
- Writable: true,
- Chmod: true,
- }, &MesonHelper{
- Setup: []KV{
- {"Dyaml", "disabled"},
- {"Dstatic-build", "true"},
- },
- },
- Flex,
- Bison,
- M4,
- Coreutils,
- Diffutils,
- ), version
-}
-func init() {
- native.mustRegister(Toolchain.newDTC, &Metadata{
- Name: "dtc",
- Description: "The Device Tree Compiler",
- Website: "https://git.kernel.org/pub/scm/utils/dtc/dtc.git/",
-
- ID: 16911,
- })
-}