banner.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2020 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <sys/util.h>
  8. #include <init.h>
  9. #include <device.h>
  10. #include <version.h>
  11. /* boot banner items */
  12. #if defined(CONFIG_MULTITHREADING) && defined(CONFIG_BOOT_DELAY) && \
  13. CONFIG_BOOT_DELAY > 0
  14. #define BOOT_DELAY_BANNER " (delayed boot " STRINGIFY(CONFIG_BOOT_DELAY) "ms)"
  15. #else
  16. #define BOOT_DELAY_BANNER ""
  17. #endif
  18. #if defined(CONFIG_BOOT_DELAY) || CONFIG_BOOT_DELAY > 0
  19. void boot_banner(void)
  20. {
  21. #if defined(CONFIG_BOOT_DELAY) && CONFIG_BOOT_DELAY > 0
  22. static const unsigned int boot_delay = CONFIG_BOOT_DELAY;
  23. #else
  24. static const unsigned int boot_delay;
  25. #endif
  26. if (boot_delay > 0 && IS_ENABLED(CONFIG_MULTITHREADING)) {
  27. printk("***** delaying boot " STRINGIFY(
  28. CONFIG_BOOT_DELAY) "ms (per build configuration) *****\n");
  29. k_busy_wait(CONFIG_BOOT_DELAY * USEC_PER_MSEC);
  30. }
  31. #if defined(CONFIG_BOOT_BANNER)
  32. #ifdef BUILD_VERSION
  33. printk("*** Booting Zephyr OS build %s %s ***\n",
  34. STRINGIFY(BUILD_VERSION), BOOT_DELAY_BANNER);
  35. #else
  36. printk("*** Booting Zephyr OS version %s %s ***\n",
  37. KERNEL_VERSION_STRING, BOOT_DELAY_BANNER);
  38. #endif
  39. #endif
  40. }
  41. #else
  42. void boot_banner(void)
  43. {
  44. /* do nothing */
  45. }
  46. #endif