Add the tizen_rpi header file for tizen.
It can be included tizen specific configuration for rpi boards.
Someone wants to change loglevel, follow the below command :
U-Boot> edit opts
edit : loglevel=7
- Change the loglevel value what you want.
Change-Id: I60157dd380a447ce1757921810e0b942be3d2843
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
#ifndef __ASSEMBLY__
#include <asm/arch/base.h>
#endif
+/* Tizen Specific configuration for RPI */
+#include <samsung/tizen_rpi.h>
/* Architecture, CPU, etc.*/
#include <config_distro_bootcmd.h>
#define CONFIG_EXTRA_ENV_SETTINGS \
+ TIZEN_ENV_SETTING \
"dhcpuboot=usb start; dhcp u-boot.uimg; bootm\0" \
ENV_DEVICE_SETTINGS \
ENV_DFU_SETTINGS \
--- /dev/null
+/*
+ * Copyright (C) 2019 Samsung Electronics
+ *
+ * Configuration settings for the Tizen RPI board.
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef __CONFIG_TIZEN_RPI_H
+#define __CONFIG_TIZEN_RPI_H
+
+#define TIZEN_ENV_SETTING \
+ "opts=loglevel=7\0"
+
+#endif /* __CONFIG_TIZEN_RPI_H */