View Single Post
Posts: 12 | Thanked: 11 times | Joined on Sep 2012 @ Poland
#449
You may use the newest power-kernel, it supports ext4. Ext3 works (I'm using it right now), but your config file is wrong. I do not know if you installed Arch on internal memory or on SD card, but you mixed them in the config. My Arch resides on SD card, that's my tested .item file:
Code:
ITEM_NAME="Arch Linux ARM"
ITEM_KERNEL="/boot/uImage"
ITEM_DEVICE="${EXT_CARD}p1"
ITEM_FSTYPE="ext3"
ITEM_OMAPATAG="1"
ITEM_CMDLINE="root=/dev/mmcblk0p1 rootwait init=/bin/systemd omapfb.vram=0:3M,1:3M,2:3M quiet"
(of course ITEM_CMDLINE is one line, not splitted like in here)
For internal memory, I would have something similar to:
Code:
ITEM_NAME="Arch Linux ARM"
ITEM_KERNEL="/boot/uImage"
ITEM_DEVICE="${INT_CARD}p3"
ITEM_FSTYPE="ext3"
ITEM_OMAPATAG="1"
ITEM_CMDLINE="root=/dev/mmcblk1p3 rootwait init=/bin/systemd omapfb.vram=0:3M,1:3M,2:3M quiet"
And for sure those configs were mentioned many times in this thread and other tutorials.
 

The Following 5 Users Say Thank You to orsoniasty For This Useful Post: