From 1862aa951b204717f8df8cc0c6c077fe18e23127 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Fri, 12 Apr 2019 09:24:56 +0200 Subject: [PATCH] hw16: Use mmcblk1 as root Since Kernel 4.14 the mmc label have changed and root is on mmc1 while mmc0 is the mmc interface on which the wifi chip is conntected --- include/configs/am335x_netbird_v2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/am335x_netbird_v2.h b/include/configs/am335x_netbird_v2.h index 5806092425..de16bed159 100644 --- a/include/configs/am335x_netbird_v2.h +++ b/include/configs/am335x_netbird_v2.h @@ -59,7 +59,7 @@ "load_addr=" LOAD_ADDR "\0" \ "root_part=1\0" /* Default root partition, overwritte in board file */ \ "defaultconsole=ttyS1\0" /* Default output console */ \ - "add_sd_bootargs=setenv bootargs $bootargs root=/dev/mmcblk0p$root_part rootfstype=ext4 console=$defaultconsole,115200 rootwait loglevel=4\0" \ + "add_sd_bootargs=setenv bootargs $bootargs root=/dev/mmcblk1p$root_part rootfstype=ext4 console=$defaultconsole,115200 rootwait loglevel=4\0" \ "add_version_bootargs=setenv bootargs $bootargs\0" \ "fdt_skip_update=yes\0" \ "ethprime=cpsw\0" \