Hi, I'm a newbie for BBB (rev C), I tried to flash TI linux into BBB's eMMC.
First step, I'm using Win32 disk imager to flash image "am335x-evm-02.00.01.07.img" into micro SD card, It's work BBB can boot and running.
Second step,I tried from this step (from e2e.ti.com/.../344528)
4. The eMMC is /dev/mmcblk1. Format it this way: 4.01. fdisk /dev/mmcblk1 4.02. o - this clears the existing partitions 4.03. p - this lists all partition tables on the card (there should be none) 4.04. n - create a new partition 4.05. p - primary partition 4.06. 1 - partition number 4.07. 2048 - default value for the first sector 4.08. +16M - last sector / partition size 4.09. t - change the partition type (select partition 1) 4.10. e - change tha partition type to "W95 FAT16 (LBA)" 4.11. a - set the bootable flag for the selected partition (1) 4.12. n - create a new partition 4.13. p - primary partition 4.14. 2 - partition number 4.15. hit Enter to choose the default (next available) value for the first sector 4.16. hit Enter to choose the default (last) value for the last sector 4.17. p - this lists all partition tables on the card (there should be two) 4.18. w - write all the above changes to disk 4.19. umount /dev/mmcblk1p1; mkfs.vfat -F 16 /dev/mmcblk1p1 - format the first partition 4.20. umount /dev/mmcblk1p2; mkfs.ext4 /dev/mmcblk1p2 - format the second partition 5. Copy the {MLO,u-boot.img,uEnv.txt} files to the first partition: # mkdir boot # mount /dev/mmcblk1p1 boot # cp {MLO,u-boot.img,uEnv.txt} boot # umount boot 6. Copy the root file system to the second partition: # mkdir root # mount /dev/mmcblk1p2 root # tar -xf tisdk-rootfs-image-am335x-evm.tar.gz -C root # umount root 7. Shutdown the BBB, remove the SD card and start it from the eMMC.
"tisdk-rootfs-image-am335x-evm.tar.gz" I'm copy from "~/ti-processor-sdk-linux-am335x-evm-02.00.01.07/filesystem"
And when BBB booting from eMMC cannot boot,
u-boot env
-Boot 2015.07 (Jan 08 2016 - 17:53:10 -0500) Watchdog enabled I2C: ready DRAM: 512 MiB NAND: 0 MiB MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1 Card did not respond to voltage select! ** Bad device mmc 0 ** Using default environment Net: <ethaddr> not set. Validating first E-fuse MAC cpsw, usb_ether Hit any key to stop autoboot: 0 U-Boot# printenv arch=arm args_mmc=run finduuid;setenv bootargs console=${console} ${optargs} root=PARTUUID=${uuid} rw rootfstype=${mmcrootfstype} baudrate=115200 board=am335x board_name=A335BNLT board_rev=000C board_serial=4514BBBK1467 boot_fdt=try bootcmd=run findfdt; run envboot; run mmcboot;setenv mmcdev 1; setenv bootpart 1:2; run mmcboot;run nandboot; bootcount=8 bootdelay=1 bootdir=/boot bootenvfile=uEnv.txt bootfile=zImage bootm_size=0x10000000 bootpart=0:2 bootscript=echo Running bootscript from mmc${mmcdev} ...; source ${loadaddr} console=ttyO0,115200n8 cpu=armv7 dfu_alt_info_emmc=rawemmc raw 0 3751936 dfu_alt_info_mmc=boot part 0 1;rootfs part 0 2;MLO fat 0 1;MLO.raw raw 0x100 0x100;u-boot.img.raw raw 0x300 0x400;spl-os-args.raw raw 0x80 0x80;spl-os-image.raw raw 0x900 0x2000;spl-os-args fat 0 1;spl-os-image fat 0 1;u-boot.img fat 0 1;uEnv.txt fat 0 1 dfu_alt_info_nand=SPL part 0 1;SPL.backup1 part 0 2;SPL.backup2 part 0 3;SPL.backup3 part 0 4;u-boot part 0 5;u-boot-spl-os part 0 6;kernel part 0 8;rootfs part 0 9 dfu_alt_info_ram=kernel ram 0x80200000 0xD80000;fdt ram 0x80F80000 0x80000;ramdisk ram 0x81000000 0x4000000 envboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};if run loadbootscript; then run bootscript;else if run loadbootenv; then echo Loaded env from ${bootenvfile};run importbootenv;fi;if test -n $uenvcmd; then echo Running uenvcmd ...;run uenvcmd;fi;fi;fi; eth1addr=d0:5f:b8:e4:5a:75 ethact=cpsw ethaddr=d0:5f:b8:e4:5a:73 fdt_addr_r=0x88000000 fdtaddr=0x88000000 fdtfile=undefined findfdt=if test $board_name = A335BONE; then setenv fdtfile am335x-bone.dtb; fi; if test $board_name = A335BNLT; then setenv fdtfile am335x-boneblack.dtb; fi; if test $board_name = A33515BB; then setenv fdtfile am335x-evm.dtb; fi; if test $board_name = A335X_SK; then setenv fdtfile am335x-evmsk.dtb; fi; if test $fdtfile = undefined; then echo WARNING: Could not determine device tree to use; fi; finduuid=part uuid mmc 0:2 uuid importbootenv=echo Importing environment from mmc${mmcdev} ...; env import -t ${loadaddr} ${filesize} kernel_addr_r=0x82000000 loadaddr=0x82000000 loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenvfile} loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile} loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile} loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz mmcboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};if run loadimage; then run mmcloados;fi;fi ;fi; mmcdev=0 mmcloados=run args_mmc; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run loadfdt; then bootz ${loadaddr} - ${fdtaddr}; else if test ${boot_fdt} = try; then bootz; else echo WARN: Cannot load the DT; fi; fi; else bootz; fi; mmcrootfstype=ext4 rootwait mtdids=nand0=nand.0 mtdparts=mtdparts=nand.0:128k(NAND.SPL),128k(NAND.SPL.backup1),128k(NAND.SPL.backup2),128k(NAND.SPL.backup3),256k(NAND.u-boot-spl-os),1m(NAND.u-boot),128k(NAND.u-boot-env),128k(NAND.u-boot-env.backup1),8m(NAND.kernel),-(NAND.file-system) nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype} nandboot=echo Booting from nand ...; run nandargs; nand read ${fdtaddr} NAND.u-boot-spl-os; nand read ${loadaddr} NAND.kernel; bootz ${loadaddr} - ${fdtaddr} nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048 nandrootfstype=ubifs rootwait=1 netargs=setenv bootargs console=${console} ${optargs} root=/dev/nfs nfsroot=${serverip}:${rootpath},${nfsopts} rw ip=dhcp netboot=echo Booting from network ...; setenv autoload no; dhcp; run netloadimage; run netloadfdt; run netargs; bootz ${loadaddr} - ${fdtaddr} netloadfdt=tftp ${fdtaddr} ${fdtfile} netloadimage=tftp ${loadaddr} ${bootfile} nfsopts=nolock partitions=uuid_disk=${uuid_gpt_disk};name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs} ramargs=setenv bootargs console=${console} ${optargs} root=${ramroot} rootfstype=${ramrootfstype} ramboot=echo Booting from ramdisk ...; run ramargs; bootz ${loadaddr} ${rdaddr} ${fdtaddr} ramdisk_addr_r=0x88080000 ramroot=/dev/ram0 rw ramrootfstype=ext2 rdaddr=0x88080000 rootpath=/export/rootfs soc=am33xx spiargs=setenv bootargs console=${console} ${optargs} root=${spiroot} rootfstype=${spirootfstype} spiboot=echo Booting from spi ...; run spiargs; sf probe ${spibusno}:0; sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; bootz ${loadaddr} spibusno=0 spiimgsize=0x362000 spiroot=/dev/mtdblock4 rw spirootfstype=jffs2 spisrcaddr=0xe0000 static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off stderr=serial_omap stdin=serial_omap stdout=serial_omap usbnet_devaddr=d0:5f:b8:e4:5a:75 vendor=ti ver=U-Boot 2015.07 (Jan 08 2016 - 17:53:10 -0500) Environment size: 4901/131068 bytes U-Boot#
MMC 1:1, MMC 1:2 ls
U-Boot# U-Boot# fatls mmc 1:1 69612 mlo 374156 u-boot.img emmc_boot/ 2 file(s), 1 dir(s) U-Boot# ext4ls mmc 1:2 <DIR> 4096 . <DIR> 4096 .. <DIR> 16384 lost+found <DIR> 4096 bin <DIR> 4096 dev <DIR> 4096 sys <DIR> 4096 lib <DIR> 4096 srv <DIR> 4096 mnt <DIR> 4096 proc <DIR> 4096 boot <DIR> 4096 include <DIR> 4096 sbin <DIR> 4096 run <DIR> 4096 tmp <DIR> 4096 home <DIR> 4096 var <DIR> 4096 www <DIR> 4096 opt <DIR> 4096 usr <DIR> 4096 media <DIR> 4096 etc <DIR> 4096 eMMC_ROOT U-Boot# U-Boot# ext4ls mmc 1:2 boot <DIR> 4096 . <DIR> 4096 .. <SYM> 33 am335x-bone.dtb <SYM> 34 am335x-evmsk.dtb <SYM> 22 zImage 106064548 vmlinux-4.1.13-g8dc6617 <SYM> 32 am335x-evm.dtb 3315248 zImage-4.1.13-g8dc6617 39891 devicetree-zImage-am335x-evm.dtb 33030 devicetree-zImage-am335x-boneblack.dtb <SYM> 38 am335x-boneblack.dtb 31349 devicetree-zImage-am335x-bone.dtb 37202 devicetree-zImage-am335x-evmsk.dtb U-Boot#
Boot Log
-Boot 2015.07 (Jan 08 2016 - 17:53:10 -0500) Watchdog enabled I2C: ready DRAM: 512 MiB NAND: 0 MiB MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1 Card did not respond to voltage select! ** Bad device mmc 0 ** Using default environment Net: <ethaddr> not set. Validating first E-fuse MAC cpsw, usb_ether Hit any key to stop autoboot: 0 U-Boot# boot Card did not respond to voltage select! Card did not respond to voltage select! syntax error Card did not respond to voltage select! Card did not respond to voltage select! syntax error switch to partitions #0, OK mmc1(part 0) is current device SD/MMC found on device 1 3315248 bytes read in 212 ms (14.9 MiB/s) Card did not respond to voltage select! ** Bad device mmc 0 ** 33030 bytes read in 42 ms (767.6 KiB/s) Kernel image @ 0x82000000 [ 0x000000 - 0x329630 ] ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Device Tree to 8fff4000, end 8ffff105 ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 4.1.13-g8dc6617 (gtbldadm@ubuntu-12) (gcc version 4.9.3 20150413 (prerelease) (Linaro GCC 4.9-2015.05) ) #1 PREEMPT Fri Jan 8 18:07:49 EST 2016 [ 0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] Machine model: TI AM335x BeagleBone Black [ 0.000000] cma: Reserved 24 MiB at 0x9e800000 [ 0.000000] Memory policy: Data cache writeback [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] AM335X ES2.1 (sgx neon ) [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 129920 [ 0.000000] Kernel command line: console=ttyO0,115200n8 root=PARTUUID= rw rootfstype=ext4 rootwait [ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 485016K/524288K available (6407K kernel code, 261K rwdata, 2244K rodata, 264K init, 230K bss, 14696K reserved, 24576K cma-reserved, 0K highmem) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xe0800000 - 0xff000000 ( 488 MB) [ 0.000000] lowmem : 0xc0000000 - 0xe0000000 ( 512 MB) [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) [ 0.000000] .text : 0xc0008000 - 0xc087b05c (8653 kB) [ 0.000000] .init : 0xc087c000 - 0xc08be000 ( 264 kB) [ 0.000000] .data : 0xc08be000 - 0xc08ff768 ( 262 kB) [ 0.000000] .bss : 0xc0902000 - 0xc093b8c8 ( 231 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Additional per-CPU info printed with stalls. [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts [ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz [ 0.000012] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns [ 0.000029] clocksource timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000038] OMAP clocksource: timer1 at 24000000 Hz [ 0.000196] Console: colour dummy device 80x30 [ 0.000217] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0' [ 0.000222] This ensures that you still see kernel messages. Please [ 0.000226] update your kernel commandline. [ 0.000243] Calibrating delay loop... 996.14 BogoMIPS (lpj=4980736) [ 0.089368] pid_max: default: 32768 minimum: 301 [ 0.089459] Security Framework initialized [ 0.089507] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.089516] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.090127] Initializing cgroup subsys blkio [ 0.090147] Initializing cgroup subsys memory [ 0.090183] Initializing cgroup subsys devices [ 0.090196] Initializing cgroup subsys freezer [ 0.090208] Initializing cgroup subsys perf_event [ 0.090231] CPU: Testing write buffer coherency: ok [ 0.090583] Setting up static identity map for 0x80008200 - 0x80008270 [ 0.091934] devtmpfs: initialized [ 0.100088] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3 [ 0.107272] omap_hwmod: tptc0 using broken dt data from edma [ 0.107366] omap_hwmod: tptc1 using broken dt data from edma [ 0.107444] omap_hwmod: tptc2 using broken dt data from edma [ 0.111683] omap_hwmod: debugss: _wait_target_disable failed [ 0.166039] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.167999] pinctrl core: initialized pinctrl subsystem [ 0.169147] NET: Registered protocol family 16 [ 0.171151] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.199356] cpuidle: using governor ladder [ 0.229346] cpuidle: using governor menu [ 0.232494] OMAP GPIO hardware version 0.1 [ 0.240732] No ATAGs? [ 0.240761] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.276258] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver [ 0.278897] vgaarb: loaded [ 0.279448] SCSI subsystem initialized [ 0.279916] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, deferring probe [ 0.280039] media: Linux media interface: v0.10 [ 0.280100] Linux video capture interface: v2.00 [ 0.280146] pps_core: LinuxPPS API ver. 1 registered [ 0.280153] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.280180] PTP clock support registered [ 0.280895] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400 [ 0.281101] Advanced Linux Sound Architecture Driver Initialized. [ 0.281819] Switched to clocksource timer1 [ 0.290744] NET: Registered protocol family 2 [ 0.291473] TCP established hash table entries: 4096 (order: 2, 16384 bytes) [ 0.291517] TCP bind hash table entries: 4096 (order: 2, 16384 bytes) [ 0.291555] TCP: Hash tables configured (established 4096 bind 4096) [ 0.291623] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.291639] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.291783] NET: Registered protocol family 1 [ 0.292206] RPC: Registered named UNIX socket transport module. [ 0.292219] RPC: Registered udp transport module. [ 0.292224] RPC: Registered tcp transport module. [ 0.292230] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.293013] CPU PMU: Failed to parse /pmu/interrupt-affinity[0] [ 0.293054] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available [ 0.294697] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.294779] audit: initializing netlink subsys (disabled) [ 0.294839] audit: type=2000 audit(0.280:1): initialized [ 0.301139] VFS: Disk quotas dquot_6.6.0 [ 0.301327] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 0.303347] NFS: Registering the id_resolver key type [ 0.303415] Key type id_resolver registered [ 0.303423] Key type id_legacy registered [ 0.303489] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc. [ 0.305723] NET: Registered protocol family 38 [ 0.305788] io scheduler noop registered [ 0.305802] io scheduler deadline registered [ 0.305855] io scheduler cfq registered (default) [ 0.306774] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568 [ 0.308461] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle [ 0.309390] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled [ 0.312576] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 155, base_baud = 3000000) is a 8250 [ 0.956872] console [ttyS0] enabled [ 0.961231] [drm] Initialized drm 1.1.0 20060810 [ 0.966231] slave hdmi: could not get i2c [ 0.979131] brd: module loaded [ 0.986625] loop: module loaded [ 0.990576] mtdoops: mtd device (mtddev=name/number) must be supplied [ 1.061873] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6 [ 1.068009] davinci_mdio 4a101000.mdio: detected phy mask fffffffe [ 1.075094] libphy: 4a101000.mdio: probed [ 1.079135] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver SMSC LAN8710/LAN8720 [ 1.088979] cpsw 4a100000.ethernet: Detected MACID = d0:5f:b8:e4:5a:73 [ 1.097159] mousedev: PS/2 mouse device common for all mice [ 1.102914] i2c /dev entries driver [ 1.107502] omap_hsmmc 48060000.mmc: Got CD GPIO [ 1.192110] ledtrig-cpu: registered to indicate activity on CPUs [ 1.198464] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2 [ 1.205613] omap-sham 53100000.sham: hw accel on OMAP rev 4.3 [ 1.215986] remoteproc0: wkup_m3 is available [ 1.220460] remoteproc0: Note: remoteproc is still under development and considered experimental. [ 1.229615] remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed. [ 1.240282] remoteproc0: Direct firmware load for am335x-pm-firmware.elf failed with error -2 [ 1.251703] oprofile: using arm/armv7 [ 1.256536] remoteproc0: Falling back to user helper [ 1.264029] Initializing XFRM netlink socket [ 1.268364] NET: Registered protocol family 17 [ 1.273226] NET: Registered protocol family 15 [ 1.277806] Key type dns_resolver registered [ 1.282350] omap_voltage_late_init: Voltage driver support not added [ 1.289085] cpu cpu0: of_pm_voltdm_notifier_register: Failed to get cpu0 regulator/voltdm: -517 [ 1.297921] cpu cpu0: cpu0 clock notifier not ready, retry [ 1.303767] ThumbEE CPU extension supported. [ 1.308116] Registering SWP/SWPB emulation handler [ 1.324581] mmc1: MAN_BKOPS_EN bit is not set [ 1.333372] mmc1: new high speed MMC card at address 0001 [ 1.339787] mmcblk0: mmc1:0001 MMC04G 3.60 GiB [ 1.344671] mmcblk0boot0: mmc1:0001 MMC04G partition 1 2.00 MiB [ 1.351059] mmcblk0boot1: mmc1:0001 MMC04G partition 2 2.00 MiB [ 1.358842] mmcblk0: p1 p2 [ 1.364165] tps65217 0-0024: TPS65217 ID 0xe version 1.2 [ 1.369542] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz [ 1.494124] tda998x 0-0070: found TDA19988 [ 1.499186] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 1.505862] [drm] No driver support for vblank timestamp query. [ 1.512140] tilcdc 4830e000.lcdc: No connectors reported connected with modes [ 1.519320] [drm] Cannot find any crtc or sizes - going 1024x768 [ 1.533208] Console: switching to colour frame buffer device 128x48 [ 1.544295] tilcdc 4830e000.lcdc: fb0: frame buffer device [ 1.549889] tilcdc 4830e000.lcdc: registered panic notifier [ 1.581848] [drm] Initialized tilcdc 1.0.0 20121205 on minor 0 [ 1.588219] cpu cpu0: of_pm_voltdm_notifier_register: Fail calculating voltage latency[950000<->1325000]:-22 [ 1.598508] cpu cpu0: of_pm_voltdm_notifier_register: Fail calculating voltage latency[950000<->1325000]:-22 [ 1.608998] hctosys: unable to open rtc device (rtc0) [ 1.617273] ALSA device list: [ 1.620274] No soundcards found. [ 1.624249] VFS: PARTUUID= is invalid. [ 1.624249] Expected PARTUUID=<valid-uuid-id>[/PARTNROFF=%d] [ 1.633759] Disabling rootwait; root= is invalid. [ 1.638709] VFS: Cannot open root device "PARTUUID=" or unknown-block(0,0): error -6 [ 1.646587] Please append a correct "root=" boot option; here are the available partitions: [ 1.655024] 0100 8096 ram0 (driver?) [ 1.659670] 0101 8096 ram1 (driver?) [ 1.664342] 0102 8096 ram2 (driver?) [ 1.668982] 0103 8096 ram3 (driver?) [ 1.673649] 0104 8096 ram4 (driver?) [ 1.678289] 0105 8096 ram5 (driver?) [ 1.682944] 0106 8096 ram6 (driver?) [ 1.687584] 0107 8096 ram7 (driver?) [ 1.692235] 0108 8096 ram8 (driver?) [ 1.696876] 0109 8096 ram9 (driver?) [ 1.701515] 010a 8096 ram10 (driver?) [ 1.706258] 010b 8096 ram11 (driver?) [ 1.710985] 010c 8096 ram12 (driver?) [ 1.715726] 010d 8096 ram13 (driver?) [ 1.720454] 010e 8096 ram14 (driver?) [ 1.725240] 010f 8096 ram15 (driver?) [ 1.729976] b300 3776512 mmcblk0 driver: mmcblk [ 1.735335] b301 16384 mmcblk0p1 1f31505c-01 [ 1.740672] b302 3759104 mmcblk0p2 1f31505c-02 [ 1.746026] b310 2048 mmcblk0boot1 (driver?) [ 1.751364] b308 2048 mmcblk0boot0 (driver?) [ 1.756715] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) [ 1.765014] drm_kms_helper: panic occurred, switching back to text console [ 1.771938] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
How I solve this problem ?
BR
Mai,