1 /* 2 * Configuration for Xilinx ZynqMP Flash utility 3 * 4 * (C) Copyright 2018 Xilinx, Inc. 5 * Michal Simek <michal.simek@xilinx.com> 6 * Siva Durga Prasad Paladugu <sivadur@xilinx.com> 7 * 8 * SPDX-License-Identifier: GPL-2.0+ 9 */ 10 11 #ifndef __CONFIG_ZYNQMP_MINI_H 12 #define __CONFIG_ZYNQMP_MINI_H 13 14 #include <configs/xilinx_zynqmp.h> 15 16 /* Undef unneeded configs */ 17 #undef CONFIG_EXTRA_ENV_SETTINGS 18 #undef CONFIG_SYS_MALLOC_LEN 19 #undef CONFIG_ENV_SIZE 20 #undef CONFIG_ZLIB 21 #undef CONFIG_GZIP 22 #undef CONFIG_CMD_ENV 23 #undef CONFIG_MP 24 #undef CONFIG_SYS_INIT_SP_ADDR 25 #undef CONFIG_MTD_DEVICE 26 #undef CONFIG_BOOTM_NETBSD 27 #undef CONFIG_BOOTM_VXWORKS 28 #undef CONFIG_BOOTM_LINUX 29 #undef CONFIG_BOARD_LATE_INIT 30 31 /* BOOTP options */ 32 #undef CONFIG_BOOTP_BOOTFILESIZE 33 #undef CONFIG_BOOTP_MAY_FAIL 34 #undef CONFIG_CMD_UNZIP 35 36 #undef CONFIG_NR_DRAM_BANKS 37 38 #endif /* __CONFIG_ZYNQMP_MINI_H */ 39