mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 19:03:48 +01:00
6137b5f7b8
The stable/13 snapshot this week failed to build the riscv GENERICSD image because it ran out of space. Checking main and stable/14 snapshots, they are also low on space, around 100% or more of capacity. Increase them all from 5 GB to 6 GB. Note, this is the only riscv image configuration. Discussed with: cperciva
15 lines
227 B
Bash
15 lines
227 B
Bash
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
EMBEDDED_TARGET_ARCH="riscv64"
|
|
EMBEDDED_TARGET="riscv"
|
|
EMBEDDEDBUILD=1
|
|
FAT_SIZE="54m -b 8m"
|
|
FAT_TYPE="16"
|
|
IMAGE_SIZE="6144M"
|
|
KERNEL="GENERIC"
|
|
MD_ARGS="-x 63 -y 255"
|
|
PART_SCHEME="GPT"
|
|
export BOARDNAME="GENERICSD"
|