1# Copyright (C) 2018 EETS GmbH - http://www.eets.ch/ 2# 3# SPDX-License-Identifier: GPL-2.0+ 4# 5 6if TARGET_PDU001 7 8config SYS_BOARD 9 default "pdu001" 10 11config SYS_VENDOR 12 default "eets" 13 14config SYS_SOC 15 default "am33xx" 16 17config SYS_CONFIG_NAME 18 default "pdu001" 19 20choice 21 prompt "State of Run LED" 22 default RUN_LED_RED 23 help 24 The PDU001 has a bi-color (red/green) LED labeled 'Run' which 25 can be used to indicate the operating state of the board. By 26 default it will be lit red by U-Boot. Later in the start-up 27 process it can be changed to green (or heartbeat or anything else) 28 by the kernel or some other software. 29 30config RUN_LED_RED 31 bool 32 prompt "Red" 33 help 34 Lit Run LED red. 35 36config RUN_LED_GREEN 37 bool 38 prompt "Green" 39 help 40 Lit Run LED green. 41 42config RUN_LED_OFF 43 bool 44 prompt "Off" 45 help 46 Do not lit Run LED. 47 48endchoice 49 50endif 51