Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions so3/so3/include/banner.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@

#include <version.h>

/*
* CONFIG_ARCH ("arm32", "arm64", ...) is spelled out in the banner because the
* same platform can be built either way — on a Raspberry Pi 4 in particular,
* where a 32- and a 64-bit chain differ only by which kernel*.img the firmware
* picks up, there is otherwise no way to tell from the console which one
* actually booted.
*/
#define SO3_BANNER \
"\n\n********** Smart Object Oriented SO3 Operating System **********\n\
Copyright (c) 2014-2026 REDS Institute, HEIG-VD, Yverdon\n\
Version " SO3_KERNEL_VERSION "\n\n"
Version " SO3_KERNEL_VERSION " (" CONFIG_ARCH ")\n\n"

#endif /* BENNER_H */
#endif /* BANNER_H */
Loading