diff options
author | Palmer Dabbelt <palmer@dabbelt.com> | 2017-11-03 17:02:06 -0700 |
---|---|---|
committer | Palmer Dabbelt <palmer@dabbelt.com> | 2017-11-03 17:02:06 -0700 |
commit | 455608b465064eee862364796effeca91b4413f9 (patch) | |
tree | 60615272c1371ab73ce194b92f135337d613768a /configure | |
parent | d1849cb5e3b8c714c2dae78bb15465f288707ac5 (diff) | |
download | pk-455608b465064eee862364796effeca91b4413f9.zip pk-455608b465064eee862364796effeca91b4413f9.tar.gz pk-455608b465064eee862364796effeca91b4413f9.tar.bz2 |
Allow users to pick a logo
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -590,6 +590,7 @@ ac_subst_vars='LTLIBOBJS LIBOBJS subprojects_enabled subprojects +BBL_LOGO_FILE BBL_PAYLOAD install_subdir RISCV @@ -674,6 +675,7 @@ enable_optional_subprojects enable_vm enable_logo with_payload +with_logo enable_fp_emulation ' ac_precious_vars='build_alias @@ -1329,6 +1331,7 @@ Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-payload Set ELF payload for bbl + --with-logo Specify a better logo Some influential environment variables: CC C compiler command @@ -4254,6 +4257,17 @@ fi +# Check whether --with-logo was given. +if test "${with_logo+set}" = set; then : + withval=$with_logo; BBL_LOGO_FILE=$with_logo + +else + BBL_LOGO_FILE=riscv_logo.txt + +fi + + + |