|
Debian Rootfs制作方法,以及驱动模块的问题
发表于 2015-1-20 21:52:41
浏览:25215
|
回复:11
打印
只看该作者
[复制链接]
楼主
以下是制作流程
- $sudo -s
- #cd /
- #mkdir /linuxroot
- #cd /linuxroot
- #apt-get -y install debootstrap qemu-user-static
- #dd if=/dev/zero of=linux-rootfs.img bs=1M count=1024
- #mkfs.ext4 -F -L linuxroot linux-rootfs.img
- #mount linux-rootfs.img /linuxroot
- #debootstrap --foreign --arch armhf wheezy . http://ftp.cn.debian.org/debian
- #cp /usr/bin/qemu-arm-static usr/bin/
- #LC_ALL=C LANGUAGE=C LANG=C chroot . /debootstrap/debootstrap --second-stage
- #LC_ALL=C LANGUAGE=C LANG=C chroot . dpkg --configure -a
- #chroot . passwd
复制代码
按照官方说明
在SDK的kernel目录下编译内核
make firefly-rk3288-linux_defconfig
make -j8 firefly-rk3288.img
make modules
make modules_install
make INSTALL_MOD_PATH=./modules_install modules_install
然后
rsync -av ./modules_install/ /linuxroot/
之后将系统刷入板子正常启动
有线网卡及其他都正常工作,唯独板载的AP6330无法工作,和解?
我的板子是MK802V5的,默认刷的是xubuntu,我看了下,驱动都在/system/etc/firmware下
而我以前在cubietruck上搞Debian的时候驱动都在/lib/firmware下
求解答,如何才能让板载无线网卡正常工作
|
|