Chinaunix首页 | 论坛 | 博客
  • 博客访问: 829142
  • 博文数量: 222
  • 博客积分: 4341
  • 博客等级: 上校
  • 技术积分: 2155
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-16 13:50
个人简介

...

文章分类

全部博文(222)

文章存档

2019年(1)

2016年(9)

2015年(7)

2014年(14)

2013年(11)

2012年(10)

2011年(6)

2010年(25)

2009年(37)

2008年(21)

2007年(81)

我的朋友

分类: LINUX

2013-10-31 11:34:56

root@tonybox:/home/live/auto# cat build 
#!/bin/sh

set -e

lb build noauto "${@}" 2>&1 | tee build.log


root@tonybox:/home/live/auto# cat build 
#!/bin/sh


set -e


lb build noauto "${@}" 2>&1 | tee build.log
root@tonybox:/home/live/auto# cat config 
#!/bin/sh


set -e


case "$(dpkg --print-architecture)" in
amd64)
_LINUX_FLAVOURS="amd64"
_SOURCE="false"
;;


i386)
_LINUX_FLAVOURS="486 686-pae"
_SOURCE="false"
;;
esac


lb config noauto \
--clean \
--ignore-system-defaults \
--mode debian \
--linux-flavours "${_LINUX_FLAVOURS}" \
--linux-packages "linux-image linux-headers" \
  --bootappend-live "boot=live config splash locales=zh_CN.UTF-8 username=tony hostname=tonybox" \
--bootappend-live-failsafe "boot=live config quiet splash locales=zh_CN.UTF-8 username=tony hostname=tonybox" \
--apt-indices false \
        --parent-mirror-bootstrap "" \
        --parent-mirror-chroot "" \
        --parent-mirror-chroot-updates "" \
        --parent-mirror-chroot-backports "" \
        --parent-mirror-binary "" \
        --parent-mirror-binary-updates "" \
        --parent-mirror-binary-backports "" \
        --parent-mirror-debian-installer "" \
        --mirror-bootstrap "" \
        --mirror-chroot "" \
        --mirror-chroot-updates "" \
        --mirror-chroot-backports "" \
        --mirror-binary "" \
        --mirror-binary-updates "" \
        --mirror-binary-backports "" \
        --mirror-debian-installer "" \
        --mirror-bootstrap \
--source "${_SOURCE}" \
--archive-areas "main contrib" \
--bootloader syslinux \
--iso-volume "NiixLinux" \
--iso-publisher "Niix Linux Systems; etony.an@gmail.com" \
--iso-application "NiixLinux" \
--iso-preparer "NiixBuilder" \
--firmware-chroot false \
--memtest none \
--hooks "minimal" \
--debootstrap-options "--variant=minbase" \
--debian-installer live \
"${@}"


#       --distribution sid \
# --apt-recommends false \
# --debian-installer live \


root@tonybox:/home/live/auto# cat clean 
#!/bin/sh


set -e


lb clean noauto "${@}"


rm -f config/binary config/bootstrap config/chroot config/common config/source
rm -f config/control


rm -f build.log


阅读(1020) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~