I.MX6 Slackware: Difference between revisions

From embeddedTS Manuals
(Created page with "Slackware offers a mini rootfs which is simple to install and use our kernel. These instructions have been tested with Slackware 14.1, but later releases also may work with t...")
 
No edit summary
Line 20: Line 20:
to
to
   s0:12345:respawn:/sbin/agetty 115200 ttymxc0 vt100
   s0:12345:respawn:/sbin/agetty 115200 ttymxc0 vt100
Next you have to modify the fstab for emmc or sd.
<source lang=bash>
#For SD:
echo "/dev/mmcblk0p1 / ext4 errors=remount-ro 0 1" | sudo tee -a /mnt/sd/etc/fstab
#For eMMC:
echo "/dev/mmcblk1p1 / ext4 errors=remount-ro 0 1" | sudo tee -a /mnt/sd/etc/fstab
</source>

Revision as of 10:24, 4 June 2014

Slackware offers a mini rootfs which is simple to install and use our kernel.

These instructions have been tested with Slackware 14.1, but later releases also may work with these same instructions. First, use gparted, or other partition managers to create a single ext4 partition. Follow these instructions to install slackware to this partition.

# Assuming your SD card is /dev/sdd.  Check your distribution to be sure.
wget ftp://ftp.arm.slackware.com/slackwarearm/slackwarearm-devtools/minirootfs/roots/slack-14.1-miniroot_04Nov13.tar.xz

sudo mkdir /mnt/sd/
sudo mount /dev/sdd1 /mnt/sd
wget ftp://ftp.arm.slackware.com/slackwarearm/slackwarearm-devtools/minirootfs/roots/slack-14.1-miniroot_04Nov13.tar.xz

sudo tar -xf slack-14.1-miniroot_04Nov13.tar.xz -C /mnt/sd/

Edit the file /mnt/sd/etc/inittab

Change:

 s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100

to

 s0:12345:respawn:/sbin/agetty 115200 ttymxc0 vt100

Next you have to modify the fstab for emmc or sd.

#For SD:
echo "/dev/mmcblk0p1 / ext4 errors=remount-ro 0 1" | sudo tee -a /mnt/sd/etc/fstab
#For eMMC:
echo "/dev/mmcblk1p1 / ext4 errors=remount-ro 0 1" | sudo tee -a /mnt/sd/etc/fstab