zoukankan      html  css  js  c++  java
  • Openwrt 编译报错:rootfs image is too big解决方法

    修改:

    tools/firmware-utils/src/mktplinkfw2.c

    static struct flash_layout layouts[] = {
    	{
    		.id		= "8Mltq",
    		.fw_max_len	= 0x7a0000,
    		.kernel_la	= 0x80002000,
    		.kernel_ep	= 0x80002000,
    		.rootfs_ofs	= 0x140000,
    	}, {
    		.id		= "12Mmtk",//这里改了
    		.fw_max_len	= 0xC00000,
    		.kernel_la	= 0x80000000,
    		.kernel_ep	= 0x80000000,
    		.rootfs_ofs	= 0x140000,
    	}, {
    		/* terminating entry */
    	}
    };
    
    static struct board_info boards[] = {
    	{
    		.id		= "TD-W8970v1",
    		.hw_id		= 0x89700001,
    		.hw_rev		= 1,
    		.layout_id	= "8Mltq",
    	}, {
    		.id		= "ArcherC20i",
    		.hw_id		= 0xc2000001,
    		.hw_rev		= 58,
    		.layout_id	= "12Mmtk",//这里改了
    		.hdr_ver	= 3,
    		.endian_swap	= true,
    	}, {
    		/* terminating entry */
    	}
    };
    

    过程:首先grep搜索这个错误,有好几个文件有,修改每一个,把文件名打印出来(其实报错的时候有提示文件名,我没注意);

    然后把相关的数字、字符打印出来:

    ERR("rootfs image is too big from -> mktplinkfw2.c board_id=%s, layout_id=%s, layout->fw_max_len=%d", board_id, layout_id,layout->fw_max_len);

    编译一次,我就知道解决方法了,


  • 相关阅读:
    Kubernetes的RBAC是啥
    《高效学习的七个习惯》总结
    Kubernetes的CronJob对象
    Kubernetes的Job对象
    什么是DaemonSet
    Docker容器日志路径
    什么是StatefulSet
    Kubernetes的Deployment对象使用
    MXNET:卷积神经网络基础
    MXNET:深度学习计算-GPU
  • 原文地址:https://www.cnblogs.com/lein317/p/5067517.html
Copyright © 2011-2022 走看看