bav335x: Update defconfigs and fix typo in EEPROM config format
authorGilles Gameiro <gguess007@gmail.com>
Tue, 24 Mar 2015 06:13:03 +0000 (23:13 -0700)
committerTom Rini <trini@konsulko.com>
Tue, 24 Mar 2015 14:56:35 +0000 (10:56 -0400)
After v2015.01 we need to have DM enabled in order to use UART.  Also
fix a typo in the EEPROM config format.

Signed-off-by: Gilles Gameiro <gilles@gigadevices.com>
[trini: Reword commit message, re-save defconfigs with 'savedefconfig']
Signed-off-by: Tom Rini <trini@konsulko.com>
board/birdland/bav335x/board.h
configs/birdland_bav335a_defconfig
configs/birdland_bav335b_defconfig

index b598ce1..1ea681e 100644 (file)
@@ -33,7 +33,7 @@ struct board_eeconfig {
        unsigned int  magic;
        char name[HDR_NAME_LEN];        /* BAV3354 */
        char version[4];                /* 0B20 - Rev.B2 */
-       char serial[12];
+       char serial[16];
        char config[32];
        char mac_addr[HDR_NO_OF_MAC_ADDR][HDR_ETH_ALEN];
 };
index 60df411..54ac4d1 100644 (file)
@@ -1,5 +1,8 @@
-CONFIG_SPL=y
-CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1"
 CONFIG_ARM=y
 CONFIG_TARGET_BAV335X=y
+CONFIG_DM=y
+CONFIG_DM_SERIAL=y
+CONFIG_SYS_MALLOC_F=y
 CONFIG_BAV_VERSION=1
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1"
index ed3f6fa..9046553 100644 (file)
@@ -1,5 +1,8 @@
-CONFIG_SPL=y
-CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1"
 CONFIG_ARM=y
 CONFIG_TARGET_BAV335X=y
+CONFIG_DM=y
+CONFIG_DM_SERIAL=y
+CONFIG_SYS_MALLOC_F=y
 CONFIG_BAV_VERSION=2
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1"