Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 2 | /* |
Tony Dinh | c153576 | 2022-02-03 14:32:29 -0800 | [diff] [blame] | 3 | * Copyright (C) 2022 Tony Dinh <mibodhi@gmail.com> |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 4 | * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu> |
| 5 | * |
| 6 | * Based on sheevaplug.h originally written by |
| 7 | * Prafulla Wadaskar <prafulla@marvell.com> |
| 8 | * (C) Copyright 2009 |
| 9 | * Marvell Semiconductor <www.marvell.com> |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef _CONFIG_DOCKSTAR_H |
| 13 | #define _CONFIG_DOCKSTAR_H |
| 14 | |
| 15 | /* |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 16 | * mv-common.h should be defined after CMD configs since it used them |
| 17 | * to enable certain macros |
| 18 | */ |
| 19 | #include "mv-common.h" |
| 20 | |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 21 | /* |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 22 | * Default environment variables |
| 23 | */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 24 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 25 | #define CFG_EXTRA_ENV_SETTINGS \ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 26 | "console=console=ttyS0,115200\0" \ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 27 | "kernel=/boot/uImage\0" \ |
| 28 | "initrd=/boot/uInitrd\0" \ |
| 29 | "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0" |
| 30 | |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 31 | #endif /* _CONFIG_DOCKSTAR_H */ |