[rtems commit] bsps/atsam: Fix type of options

Christian Mauderer christianm at rtems.org
Tue Jun 7 06:26:12 UTC 2022


Module:    rtems
Branch:    master
Commit:    8beb1d2fb005ce4b4473eddd582561abf3154b17
Changeset: http://git.rtems.org/rtems/commit/?id=8beb1d2fb005ce4b4473eddd582561abf3154b17

Author:    Christian Mauderer <christian.mauderer at embedded-brains.de>
Date:      Mon May 23 10:49:34 2022 +0200

bsps/atsam: Fix type of options

ATSAM_CONSOLE_DEVICE_INDEX and ATSAM_CONSOLE_DEVICE_TYPE have to be
integers like suggested by their description. Otherwise it's not
possible to select (for example) USART2 as console device.

---

 spec/build/bsps/arm/atsam/optconidx.yml  | 4 ++--
 spec/build/bsps/arm/atsam/optcontype.yml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/spec/build/bsps/arm/atsam/optconidx.yml b/spec/build/bsps/arm/atsam/optconidx.yml
index 42fb3b142a..1c0723c594 100644
--- a/spec/build/bsps/arm/atsam/optconidx.yml
+++ b/spec/build/bsps/arm/atsam/optconidx.yml
@@ -1,11 +1,11 @@
 SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
 actions:
-- get-boolean: null
+- get-integer: null
 - define-condition: null
 build-type: option
 copyrights:
 - Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
-default: true
+default: 1
 default-by-variant: []
 description: |
   device index for /dev/console (default 1, e.g. USART1)
diff --git a/spec/build/bsps/arm/atsam/optcontype.yml b/spec/build/bsps/arm/atsam/optcontype.yml
index eddbee1063..fd0daa8999 100644
--- a/spec/build/bsps/arm/atsam/optcontype.yml
+++ b/spec/build/bsps/arm/atsam/optcontype.yml
@@ -1,11 +1,11 @@
 SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
 actions:
-- get-boolean: null
+- get-integer: null
 - define-condition: null
 build-type: option
 copyrights:
 - Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
-default: false
+default: 0
 default-by-variant: []
 description: |
   device type for /dev/console, use 0 for USART and 1 for UART (default USART)



More information about the vc mailing list