1*8797b2caSSimon Glass /* 2*8797b2caSSimon Glass * Copyright (c) 2016 Google, Inc 3*8797b2caSSimon Glass * SPDX-License-Identifier: GPL-2.0+ 4*8797b2caSSimon Glass */ 5*8797b2caSSimon Glass 6*8797b2caSSimon Glass #ifndef __SANDBOX_SPL_CONFIG_H 7*8797b2caSSimon Glass #define __SANDBOX_SPL_CONFIG_H 8*8797b2caSSimon Glass 9*8797b2caSSimon Glass #include <configs/sandbox.h> 10*8797b2caSSimon Glass 11*8797b2caSSimon Glass #define CONFIG_SPL_DRIVERS_MISC_SUPPORT 12*8797b2caSSimon Glass #define CONFIG_SPL_ENV_SUPPORT 13*8797b2caSSimon Glass #define CONFIG_SPL_FRAMEWORK 14*8797b2caSSimon Glass #define CONFIG_SPL_LIBCOMMON_SUPPORT 15*8797b2caSSimon Glass #define CONFIG_SPL_LIBGENERIC_SUPPORT 16*8797b2caSSimon Glass #define CONFIG_SPL_SERIAL_SUPPORT 17*8797b2caSSimon Glass 18*8797b2caSSimon Glass #endif 19