〖Linux〗ltib的使用帮助
scue@Link:/home/work/ltib$ ./ltib --help This script is used to manage the building of BSPs with common target
root filesystems. Normally the system default are what you need. However, if you need to fine
tune some of the setup parameters, edit the file .ltibrc in this directory,
alternatively you may use a common .ltibrc file by placing one in your home
directory. ltib [-m <mode>] [options....]
Where:
--mode|m
Where mode is either:
prep just prep the package
scbuild rpmbuild -bc --short-circuit
scinstall rpmbuild -bi --short-circuit
scdeploy does an scinstall followed by an install to the rootfs
patchmerge generate and merge a patch (requires -p <pkg>)
clean clean/uninstall target packages
distclean full cleanup, removes nearly everything
listpkgs list packages (alphanumeric)
listpkgseula list package names and licenses
listpkgstw list packages in twiki format
listpkgscsv list packages in a format for import into spreadsheet
listpkgsbuild list enabled packages in build order
release make a binary release iso image
trelease make a non-distributable test iso release
config configure selected platform (no build)
selectype sub-platform selection (no build)
shell enter ltib shell mode (sets up spoofing etc)
addsrpms import srpms into ltib (semi-automatic)
--rootn|R : Root context number ( is the primary and implicit)
--pkg|p : operate on this package only
--configure|c : run the interactive configuration and build
--selectype : run the sub-platform configuration and build
--preconfig : configuration file to build from (defaults to .config)
--profile : profile file. This is used to select an alternate
set of userspace packages, this is saved and used
on later runs of ltib (e.g config/profiles/max.config)
--rcfile|r <f>: use this resource file
--batch|b : batch mode, assume yes to all questions
--force|f : force rebuilds even if they are up to date
--reinstall|e : re-install rpms (but don't force rebuild)
--erase|E : remove (erase) rpm
--nodeps|n : turn off install/uninstall dependency checks
--conflicts|k : don't force install rpms that have file conflicts
--keepsrpms|s : keep the srpms after the build (deleted by default)
--verbose|v : more output
--dry-run|d : mostly a dry run (calls to system are just echos)
--continue|C : try to continue on package build errors (autobuilds)
--version|V : print the application version and quit
--noredir|N : do not redirect any output
--deploy|D : run the deploy scripts even if build is up to date
--no-deploy : disabled deployment (even with -p <pkg>
--dlonly : just download the packages only
--dltest : test that the BSP's packages are available
--external : check against external staging repositories
--leavesrc|l : leave the sources unpacked (only valid for pkg mode)
--sticky : Make the selected root number sticky
--no-sticky : Remove root stickiness
--hostcf : (re)configure/build/install the host support package set
--enabled : use with package listings
--ignorelock : use if you really want to ignore any locks (careful!)
--fullbsp : used with -m release to copy additional content
--no-sudo : don't check sudo, work around for broken sudo (fc9)
--help|h : help on usage
〖Linux〗ltib的使用帮助的更多相关文章
- ltib学习抄录
linux -- LTIB学习笔记 一 安装篇二 运行篇三 修改工具包 四 编译新的内核 ---------相关资料------------------------------------------ ...
- Linux 驱动开发
linux驱动开发总结(一) 基础性总结 1, linux驱动一般分为3大类: * 字符设备 * 块设备 * 网络设备 2, 开发环境构建: * 交叉工具链构建 * NFS和tftp服务器安装 3, ...
- 〖Linux〗Debian 7.1.0 Wheezy使用ltib报错的解决办法
报错内容: scue@Link:/home/work/ltib$ ./ltib Processing platform: Phytec board with the NXP LPC32XX SoC = ...
- linux定制
http://cc.bingj.com/cache.aspx?q=OpenEmbedded+clfs&d=4706495287069596&mkt=zh-CN&setlang= ...
- LTIB常用命令3
http://blog.csdn.net/junht/article/details/7656540 LTIB 中的包 4.3.1 查看哪些包是使能的,并且可以安装 在配置ltib之前,您可以在一个 ...
- LTIB常用命令2
LTIB 编译配置选项 根据说明文档,ltib 可以通过以下的命令配置: * <verbatim># ./ltib</verbatim> 安装后第一次运行,采 ...
- LTIB常用命令1
下面再写一点ltib的常用命令参数吧,虽然觉得对其编译内核和文件系统流程有了一定了解,但是对其命令参数用过的还不是很多,可以说是不甚了解,下面介绍一些,希望有用: 首先一个比较有用的命令参数就是hel ...
- [Freescale]E9学习笔记-LTIB总结
转自:http://blog.csdn.net/wl_haanel/article/details/6231353 写在前面 符号'##'后面语句均为注释 需要做的操作 ...
- [Freescale]E9学习笔记-LTIB安装配置
转自:http://blog.csdn.net/girlkoo/article/details/44535979 LTIB: Linux Target Image Builder Freescale提 ...
随机推荐
- 权限验证AuthorizeAttribute
/// <summary> /// 权限验证属性. /// </summary> public class AuthorizeExAttribute : AuthorizeAt ...
- Chrome无法播放m3u8格式的直播视频流的问题解决
出国,然后安装这个插件即可:Native HLS Playback https://chrome.google.com/webstore/detail/native-hls-playback/emnp ...
- Constant-on-time buck-boost regulator converts a positive input to a negative output
Buck regulators find wide application as step-down regulators for converting large positive input vo ...
- System.Threading.Tasks.Task 任务引起的IIS应用程序池崩溃
转载:http://www.cnblogs.com/aaa6818162/p/4421305.html 问题现象 IIS应用程序池崩溃(Crash)的特征如下: 1. 从客户端看,浏览器一直处于连接状 ...
- Photoshop的版本体系
Photoshop CS6 和Photoshop CC的区别 没有什么玄乎的,仅仅是版本不一样. 版本的命名 Photoshop CS6 是CS系列的最后一版本, Adobe Photoshop CS ...
- java多线程知识汇总(三)如何选择锁?如何加锁
1.锁,保证的是被锁的代码,一次执行完毕才能被其他线程执行,锁保证了一个线程执行过程中不被其他线程打断.以保证数据的准确性. 2.数据的读写过程,是有冲突的,当一个线程正在读数据,另一个线程正在写同一 ...
- bionase
BIONASE BIONASE是一个革命性的新设备,针对过敏性鼻炎(花粉病或枯草热)以及大多其他类型的鼻炎.BIONASE能够缓解以及有效阻止与过敏性鼻炎相关的临床症状,例如:鼻塞,打喷嚏,头疼以及流 ...
- 淘宝API开发第一步
1.登录淘宝开放平台:http://open.taobao.com/ 2.添加网站 (验证完网站后,会提醒“JSSDK以激活提交审核按钮”,这个需要的UV达100,按钮才会亮,审核过程中也得保持UV的 ...
- web.xml加载顺序 [转载]
一 1.启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点. 2.紧急着,容创建一个Ser ...
- 用IIS防止mdb数据库被下载
如何防止mdb数据库被下载?本文讨论的是在服务器端禁止mdb格式数据库文件被下载,而不是在数据库中加入防下载表,将数据库名改为含#号的asp.asa等后缀格式. 下面以IIS6.0为例说明如何在服务器 ...