Make realmfs not appimg
This commit is contained in:
parent
bb36825661
commit
fd7aad9f3b
20
Makefile
20
Makefile
@ -1,4 +1,4 @@
|
||||
.PHONY: help docker-image docker-shell citadel-image citadel-kernel user-rootfs update-submodules build-appimg install-build-deps installer
|
||||
.PHONY: help docker-image docker-shell citadel-image citadel-kernel user-rootfs update-submodules realmfs install-build-deps installer
|
||||
|
||||
BASE_DIR = $(shell pwd)
|
||||
BASE_BINDMOUNT = type=bind,source=$(BASE_DIR),target=/home/builder/citadel
|
||||
@ -10,7 +10,7 @@ undefine DOCKER_RUN
|
||||
undefine DOCKER_RUN_PRIV
|
||||
endif
|
||||
|
||||
APPIMG_TARFILE = build/appimg/appimg-rootfs.tar.xz
|
||||
REALMFS_IMAGE = build/realmfs/citadel-realmfs.ext4
|
||||
INSTALLER_IMAGE = build/images/citadel-installer.img
|
||||
|
||||
#
|
||||
@ -20,7 +20,7 @@ help:
|
||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
|
||||
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||
|
||||
installer: ${APPIMG_TARFILE} ## Build citadel installer image (This will build everything)
|
||||
installer: ${REALMFS_IMAGE} ## Build citadel installer image (This will build everything)
|
||||
$(DOCKER_RUN) bash -c "source setup-build-env && bitbake --continue citadel-installer-image"
|
||||
@echo "Installer image:"
|
||||
@ls -l $(INSTALLER_IMAGE)
|
||||
@ -31,8 +31,8 @@ rootfs: ## Build only citadel rootfs image
|
||||
kernel: ## Build only citadel kernel
|
||||
$(DOCKER_RUN) bash -c "source setup-build-env && bitbake citadel-kernel"
|
||||
|
||||
appimg: ## Build only application image
|
||||
$(DOCKER_RUN_PRIV) bash -c 'sudo APPIMG_BUILDER_BASE=$${PWD}/appimg-builder appimg-builder/stage-one.sh --no-confirm -z -d build/appimg'
|
||||
realmfs: ## Build only base realmfs image
|
||||
$(DOCKER_RUN_PRIV) bash -c 'sudo REALMFS_BUILDER_BASE=$${PWD}/realmfs-builder realmfs-builder/stage-one.sh --no-confirm -i -d build/realmfs'
|
||||
|
||||
docker-image: ## Create docker builder image. You need to run this one time before running anything else.
|
||||
docker build -t citadel-builder scripts/docker
|
||||
@ -55,11 +55,11 @@ kernel-test: ## Boot kernel with Qemu ('ctrl-a x' to exit qemu)
|
||||
@scripts/qemu-boot kernel
|
||||
|
||||
install-build-deps:
|
||||
sudo apt install --no-install-recommends build-essential python bzip2 cpio chrpath diffstat file texinfo inkscape libgmp-dev libmpc-dev libelf-dev gawk
|
||||
sudo apt install --no-install-recommends build-essential python bzip2 cpio chrpath diffstat file texinfo inkscape libgmp-dev libmpc-dev libelf-dev gawk wget
|
||||
|
||||
$(APPIMG_TARFILE):
|
||||
@mkdir -p build/appimg
|
||||
$(DOCKER_RUN_PRIV) bash -c 'sudo APPIMG_BUILDER_BASE=$${PWD}/appimg-builder appimg-builder/stage-one.sh --no-confirm -z -d build/appimg'
|
||||
$(REALMFS_IMAGE):
|
||||
@mkdir -p build/realmfs
|
||||
$(DOCKER_RUN_PRIV) bash -c 'sudo REALMFS_BUILDER_BASE=$${PWD}/realmfs-builder realmfs-builder/stage-one.sh --no-confirm -i -d build/realmfs'
|
||||
|
||||
$(INSTALLER_IMAGE): $(APPIMG_TARFILE)
|
||||
$(INSTALLER_IMAGE): $(REALMFS_IMAGE)
|
||||
$(DOCKER_RUN) bash -c "source setup-build-env && bitbake citadel-installer-image"
|
||||
|
Loading…
Reference in New Issue
Block a user