Initial commit

master
Dustin 2025-08-17 21:48:14 -05:00
commit 3884b29869
5 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/_build

7
.gitmodules vendored Normal file
View File

@ -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

19
Makefile Normal file
View File

@ -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) $@

1
aimee-os Submodule

@ -0,0 +1 @@
Subproject commit 9dae022788fa4040bbe7c5b38a3278d64e2d5458

1
buildroot Submodule

@ -0,0 +1 @@
Subproject commit 00fa6003038b4c4483f52dded1f8b9cf2fa57e5a