diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-02-04 18:31:58 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-02-04 18:31:58 +0100 |
commit | 0c5557c257b36e8456ab5c0d8473e9505534c424 (patch) | |
tree | e00a6e34aac332123cba529b7c58c156561adc9a /makefile | |
parent | 9a993336835d38600fd740af01af6e68bf9f1af7 (diff) |
auto start the linux kernelweek2
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -55,10 +55,13 @@ bootloader/.config: state/submodules state/container_img .PHONY: build_bootloader build_bootloader: bootloader/.config state/container_img $(CTRIZE) $(MAKE) -C bootloader +uboot.env: uboot.txt + $(CTRIZE) bootloader/tools/mkenvimage -p 0x00 -s 0x20000 -o $@ $< # NOTE: MLO MUST be copied first BOOTLOADER_FILES += bootloader/MLO BOOTLOADER_FILES += bootloader/u-boot.img BOOTLOADER_FILES += bootloader/u-boot.dtb +BOOTLOADER_FILES += uboot.env $(BOOTLOADER_FILES): build_bootloader kernel/.config: state/submodules state/container_img |