Skip to content

Commit

Permalink
fix(library): Add working version of base
Browse files Browse the repository at this point in the history
Use `base` branch to build the base (i.e. App ELF Loader) image. Also
use `stable` for LWIP. And add crash and debugging information.

All chanages go into the `Kraftfile` for the base build.

Signed-off-by: Razvan Deaconescu <[email protected]>
  • Loading branch information
razvand committed Dec 2, 2023
1 parent bcbbba3 commit b588d7e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions library/base/Kraftfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ template:

unikraft:
source: https://github.com/unikraft/unikraft
version: testing
version: base
kconfig:
CONFIG_APPELFLOADER_VFSEXEC_EXECBIT: 'n'
CONFIG_HAVE_PAGING_DIRECTMAP: 'y'
Expand Down Expand Up @@ -46,9 +46,12 @@ unikraft:
CONFIG_LIBUKBOOT_BANNER_MINIMAL: 'y'
CONFIG_LIBUKBOOT_HEAP_BASE: '0x400000000'
CONFIG_LIBUKCPIO: 'y'
CONFIG_LIBUKDEBUG_CRASH_SCREEN: 'n'
CONFIG_LIBUKDEBUG_ENABLE_ASSERT: 'n'
CONFIG_LIBUKDEBUG_PRINT_TIME: 'n'
CONFIG_LIBUKDEBUG_CRASH_SCREEN: 'y'
CONFIG_LIBUKDEBUG_ENABLE_ASSERT: 'y'
CONFIG_LIBUKDEBUG_PRINT_SRCNAME: 'n'
CONFIG_LIBUKDEBUG_PRINT_TIME: 'y'
CONFIG_LIBUKDEBUG_PRINTK_ERR: 'y'
CONFIG_LIBUKDEBUG_PRINTK: 'y'
CONFIG_LIBUKFALLOC: 'y'
CONFIG_LIBUKMPI: 'n'
CONFIG_LIBUKSIGNAL: 'y'
Expand All @@ -67,7 +70,7 @@ unikraft:
libraries:
lwip:
source: https://github.com/unikraft/lib-lwip
version: staging
version: stable
libelf:
source: https://github.com/unikraft/lib-libelf
version: staging
Expand Down

0 comments on commit b588d7e

Please sign in to comment.