PrawnOS-nonfree/makefile

122 lines
3.7 KiB
Makefile
Raw Normal View History

# This file is part of PrawnOS (https://www.prawnos.com)
# Copyright (c) 2018 Hal Emmerich <hal@halemmerich.com>
# PrawnOS is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
# PrawnOS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with PrawnOS. If not, see <https://www.gnu.org/licenses/>.
.DEFAULT_GOAL := image
2020-06-13 03:23:04 +02:00
PRAWNOS_ROOT := $(shell git rev-parse --show-toplevel)
include $(PRAWNOS_ROOT)/scripts/BuildScripts/BuildCommon.mk
include $(PRAWNOS_ROOT)/initramfs/makefile
include $(PRAWNOS_ROOT)/kernel/makefile
2019-02-27 20:20:11 +01:00
#Usage:
#run make image
#this will generate two images named PRAWNOS_IMAGE and PRAWNOS_IMAGE-BASE
2019-02-27 20:20:11 +01:00
#-BASE is only the filesystem with no kernel.
#if you make any changes to the kernel or kernel config with make kernel_config
#run kernel_inject
#:::::::::::::::::::::::::::::: cleaning ::::::::::::::::::::::::::::::
.PHONY: clean
clean:
@echo "Enter one of:"
#TODO
.PHONY: clean_image
clean_img:
rm -f $(PRAWNOS_IMAGE)
2019-02-27 20:20:11 +01:00
2019-10-15 16:27:47 +02:00
.PHONY: clean_basefs
clean_basefs:
rm -f $(PRAWNOS_IMAGE_BASE)
2020-06-14 21:07:29 +02:00
.PHONY: clean_pbuilder
2020-05-28 02:46:37 +02:00
clean_pbuilder:
rm -r build/prawnos-pbuilder-armhf-base.tgz
.PHONY: clean_all
clean_all: clean_kernel clean_initramfs clean_ath9k clean_image clean_basefs clean_pbuilder
#:::::::::::::::::::::::::::::: premake prep ::::::::::::::::::::::::::::::
2020-04-01 00:13:37 +02:00
.PHONY: build_dirs
build_dirs: $(PRAWNOS_BUILD)
#:::::::::::::::::::::::::::::: kernel ::::::::::::::::::::::::::::::::::::
#included from kernel/makefile
#:::::::::::::::::::::::::::::: initramfs :::::::::::::::::::::::::::::::::
#included from initramfs/makefile
#:::::::::::::::::::::::::::::: filesystem ::::::::::::::::::::::::::::::::
#makes the base filesystem image without kernel. Only make a new one if the base image isnt present
.PHONY: filesystem
filesystem:
2020-05-10 10:01:52 +02:00
$(MAKE) build_dirs
2020-05-27 08:13:18 +02:00
rm -rf build/logs/fs-log.txt
$(MAKE) pbuilder_create
$(MAKE) filesystem_packages
[ -f $(PRAWNOS_IMAGE_BASE) ] || $(PRAWNOS_FILESYSTEM_SCRIPTS_BUILD) $(KVER) $(DEBIAN_SUITE) $(PRAWNOS_IMAGE_BASE) $(PRAWNOS_ROOT) $(PRAWNOS_SHARED_SCRIPTS) 2>&1 | tee build/logs/fs-log.txt
2019-02-27 20:20:11 +01:00
2020-06-13 03:23:04 +02:00
#:::::::::::::::::::::::::::::: packages ::::::::::::::::::::::::::::::::
.PHONY: filesystem_packages
filesystem_packages:
$(MAKE) filesystem_packages -C packages
2020-06-13 03:23:04 +02:00
.PHONY: filesystem_packages_install
filesystem_packages_install:
ifndef INSTALL_TARGET
$(error INSTALL_TARGET is not set)
endif
$(MAKE) filesystem_packages_install INSTALL_TARGET=$(INSTALL_TARGET) -C filesystem
#:::::::::::::::::::::::::::::: image management ::::::::::::::::::::::::::
2020-05-28 02:46:37 +02:00
.PHONY: kernel_install
2020-05-28 02:46:37 +02:00
kernel_inject: #Targets an already built .img and swaps the old kernel with the newly compiled kernel
$(PRAWNOS_IMAGE_SCRIPTS_INSTALL_KERNEL) $(KVER) $(PRAWNOS_IMAGE)
2020-05-28 02:46:37 +02:00
.PHONY: kernel_update
kernel_update:
$(MAKE) clean_img
2020-05-10 10:01:52 +02:00
$(MAKE) initramfs
$(MAKE) kernel
cp $(PRAWNOS_IMAGE_BASE) $(PRAWNOS_IMAGE)
$(MAKE) kernel_install
.PHONY: image
image:
2020-05-10 10:01:52 +02:00
$(MAKE) clean_img
$(MAKE) filesystem
$(MAKE) initramfs
$(MAKE) kernel
cp $(PRAWNOS_IMAGE_BASE) $(PRAWNOS_IMAGE)
$(MAKE) kernel_install
2019-02-27 20:20:11 +01:00
#:::::::::::::::::::::::::::::: pbuilder management :::::::::::::::::::::::
2020-05-28 19:06:52 +02:00
.PHONY: pbuilder_create
2020-05-28 23:58:19 +02:00
pbuilder_create:
2020-05-28 19:06:52 +02:00
$(MAKE) $(PBUILDER_CHROOT)
2020-06-13 03:23:04 +02:00
$(PBUILDER_CHROOT):
pbuilder create --basetgz $(PBUILDER_CHROOT) --configfile $(PBUILDER_RC)
2019-02-27 20:20:11 +01:00
2020-05-28 19:06:52 +02:00
#TODO: should only update if not updated for a day
.PHONY: pbuilder_update
2020-05-28 23:58:19 +02:00
pbuilder_update:
pbuilder update --basetgz $(PBUILDER_CHROOT) --configfile $(PBUILDER_RC)