From 3884b2986954bf1248b9206ad375691fe7f76c4d Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 17 Aug 2025 21:48:14 -0500 Subject: [PATCH] Initial commit --- .gitignore | 1 + .gitmodules | 7 +++++++ Makefile | 19 +++++++++++++++++++ aimee-os | 1 + buildroot | 1 + 5 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 Makefile create mode 160000 aimee-os create mode 160000 buildroot diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a485625 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/_build diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..0c309b4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,7 @@ +[submodule "aimee-os"] + path = aimee-os + url = https://git.pyrocufflink.net/aimeeos/aimee-os +[submodule "buildroot"] + path = buildroot + url = https://gitlab.com/buildroot.org/buildroot.git + branch = 2025.05.x diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dc07c9b --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +O ?= $(PWD)/_build +DEFCONFIG ?= aimeeos_rpi3_defconfig + +AIMEEOS_SRC ?= $(PWD)/aimee-os +BUILDROOT_SRC ?= $(PWD)/buildroot + +.PHONY: config +config: $(O)/.config + +$(O)/.config: + $(MAKE) \ + -C $(BUILDROOT_SRC) \ + BR2_EXTERNAL=$(AIMEEOS_SRC) \ + O=$(O) \ + $(DEFCONFIG) + + +%: + $(MAKE) -C $(O) $@ diff --git a/aimee-os b/aimee-os new file mode 160000 index 0000000..9dae022 --- /dev/null +++ b/aimee-os @@ -0,0 +1 @@ +Subproject commit 9dae022788fa4040bbe7c5b38a3278d64e2d5458 diff --git a/buildroot b/buildroot new file mode 160000 index 0000000..00fa600 --- /dev/null +++ b/buildroot @@ -0,0 +1 @@ +Subproject commit 00fa6003038b4c4483f52dded1f8b9cf2fa57e5a