mirror of
https://codeberg.org/canoeboot/cbmk.git
synced 2024-12-22 07:49:55 +00:00
6adbc8680f
changes after libreboot 20231101 were imported, up to libreboot 20231106, and then to revision: c4d90087535617d4fb31ca94803f9426010cfec5 i945 and gm45 configs were re-done, and dell e6400 was moved to its own tree with the ddr2 fix moved there, to prevent breakage on ddr3-based gm45 boards (look at libreboot 20231106 for more info) several fixes are present in this canoeboot release, that were only merged in libreboot *after* the libreboot 20231106 release, and they are: * c4d90087 add grub mods: diskfilter,hashsum,loadenv,setjmp * d0d6decb re-add grub modules: f2fs, json, read, scsi, sleep * 86608721 nvmutil: print usage * f12f5c3a nvmutil: fix makefile the release documentation has also been updated, pulling down newer cbwww and cbwww-img based on the new canoeboot 20231107 release announcement Signed-off-by: Leah Rowe <leah@libreboot.org>
16 lines
346 B
Makefile
16 lines
346 B
Makefile
# SPDX-License-Identifier: MIT
|
|
# SPDX-FileCopyrightText: 2022 Leah Rowe <leah@libreboot.org>
|
|
# SPDX-FileCopyrightText: 2023 Riku Viitanen <riku.viitanen@protonmail.com>
|
|
|
|
CC=cc
|
|
CFLAGS=-Os -Wall -Wextra -Werror -pedantic
|
|
PREFIX?=/usr/bin
|
|
|
|
nvm: nvmutil.c
|
|
$(CC) $(CFLAGS) nvmutil.c -o nvm
|
|
|
|
install: nvm
|
|
install nvm $(PREFIX)/nvm
|
|
|
|
clean:
|
|
rm -f nvm
|