mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	We can use the existing CONFIG_SYS_CONFIG_NAME define for that and remove the option. Also fix the boot string for all km83xx boards. Signed-off-by: Holger Brunck <holger.brunck@ch.abb.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com> CC: Priyanka Jain <priyanka.jain@nxp.com> CC: Valentin Longchamp <valentin.longchamp@ch.abb.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1009 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1009 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2006 Freescale Semiconductor, Inc.
 | 
						|
 *                    Dave Liu <daveliu@freescale.com>
 | 
						|
 *
 | 
						|
 * Copyright (C) 2007 Logic Product Development, Inc.
 | 
						|
 *                    Peter Barada <peterb@logicpd.com>
 | 
						|
 *
 | 
						|
 * Copyright (C) 2007 MontaVista Software, Inc.
 | 
						|
 *                    Anton Vorontsov <avorontsov@ru.mvista.com>
 | 
						|
 *
 | 
						|
 * (C) Copyright 2008
 | 
						|
 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
 | 
						|
 *
 | 
						|
 * (C) Copyright 2010-2013
 | 
						|
 * Lukas Roggli, KEYMILE Ltd, lukas.roggli@keymile.com
 | 
						|
 * Holger Brunck,  Keymile GmbH, holger.bruncl@keymile.com
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __CONFIG_H
 | 
						|
#define __CONFIG_H
 | 
						|
 | 
						|
/*
 | 
						|
 * High Level Configuration Options
 | 
						|
 */
 | 
						|
#define CONFIG_HOSTNAME		"tuxx1"
 | 
						|
 | 
						|
/* include common defines/options for all Keymile boards */
 | 
						|
#include "km/keymile-common.h"
 | 
						|
#include "km/km-powerpc.h"
 | 
						|
#include "km/km-mpc83xx.h"
 | 
						|
#include "km/km-mpc832x.h"
 | 
						|
 | 
						|
#define CONFIG_SYS_MAMR		(MxMR_GPL_x4DIS | \
 | 
						|
				 0x0000c000 | \
 | 
						|
				 MxMR_WLFx_2X)
 | 
						|
 | 
						|
#endif /* __CONFIG_H */
 |