aboutsummaryrefslogtreecommitdiff
path: root/include/configs/apple.h
blob: 1e08b114480e5d66e4db0ef5b774d0f7f38b5280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __CONFIG_H
#define __CONFIG_H

#include <linux/sizes.h>

/* Environment */
#define ENV_DEVICE_SETTINGS \
	"stdin=serial,usbkbd,spikbd\0" \
	"stdout=vidconsole,serial\0" \
	"stderr=vidconsole,serial\0"

#define BOOT_TARGETS	"nvme usb"

#define CFG_EXTRA_ENV_SETTINGS \
	ENV_DEVICE_SETTINGS \
	"boot_targets=" BOOT_TARGETS "\0"

#endif