Changes between Initial Version and Version 1 of DebWrtMan


Ignore:
Timestamp:
07/23/11 11:24:01 (22 months ago)
Author:
amain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DebWrtMan

    v1 v1  
     1DebWrt Build Environment manual 
     2 
     3Latest version can be found: [http://dev.debwrt.net/browser/trunk/rules/help.txt] 
     4 
     5{{{ 
     6use: make <target> 
     7 
     8Available targets: 
     9 
     10help                             : This help 
     11 
     12<no-target>                      : Build it all 
     13 
     14flash                            : Flash(sftp) image to default IP of target device 
     15 
     16menuconfig                       : DebWrt menu config 
     17config                           : DebWrt config 
     18defconfig                        : Create default DebWrt Configuration 
     19oldconfig                        : DebWrt old config 
     20config-clean                     : Clean DebWrt config 
     21config/target                    : Update DebWrt target devices list with OpenWrt's list 
     22 
     23openwrt/all                      : Build all of OpenWrt 
     24openwrt/build                    : Build OpenWrt 
     25openwrt/download                 : Download 
     26openwrt/prepare                  : Prepare OpenWrt 
     27openwrt/merge-config             : Merge DebWrt and OpenWrt config 
     28openwrt/download-link            : Set the OpenWrt dowload dir 
     29openwrt/patch                    : Apply DebWrt patches to OpenWrt sources 
     30openwrt/checkout                 : SVN checkout OpenWrt 
     31openwrt/update                   : SVN update OpenWrt 
     32openwrt/menuconfig               : OpenWrt menu config 
     33openwrt/kernel_menuconfig        : Kernel menu config 
     34openwrt/clean                    : Clean build directories ( bin/ build_dir/ ) 
     35openwrt/dirclean                 : Clean build directories and cross-compile tools 
     36openwrt/distclean                : Clean build directories and cross-compile tools and everything else ( including downloads and .config ) 
     37openwrt/debwrt-clean             : Remove OpenWrt checkout entirely 
     38 
     39openwrt/deliver/prepare          : Prepare delivery 
     40openwrt/deliver/import-config    : Display run time compile information 
     41openwrt/deliver/check            : Check run time compile information 
     42openwrt/deliver/image            : Deliver firmware images 
     43openwrt/deliver/kernel-modules   : Deliver kernel-modules package and sources 
     44openwrt/deliver/kernel-headers   : Deliver kernel-header package and sources 
     45openwrt/deliver/packages         : Deliver OpenWrt's ipk packages for reference 
     46openwrt/deliver/config           : Deliver DebWrt, OpenWrt and kernel .config files 
     47openwrt/deliver/clean            : Clean delivery directory ( bin/ ) 
     48 
     49ch                               : Enter DebWrt build environment change root as "root" 
     50chu                              : Enter DebWrt build environment change root as "user" 
     51debian/buildenv/create           : Create DebWrt build environment 
     52debian/buildenv/prepare          : Prepare DebWrt build environment  
     53debian/buildenv/emdebian-prepare : Install Emdebin into the DebWrt build environment 
     54debian/buildenv/qemu-prepare     : Setup pre-requisites for Qemu ( currently not used ) 
     55debian/buildenv/qemu-build       : Build Qemu ( currently not used ) 
     56debian/buildenv/clean            : Clean build environment ( entire chroot is deleted ) 
     57 
     58debian/package/rootfs            : Build all DebWrt Debian packages use in the target Debian root filesystem 
     59debian/package/clean             : Clean all DebWrt Debian packages 
     60debian/package/<pkg-name>/deliver: Deliver DebWrt Debian package <pkg-name> 
     61debian/package/<pkg-name>/build  : Build DebWrt Debian package <pkg-name> 
     62debian/package/<pkg-name>/prepare: Prepare DebWrt Debian package <pkg-name> 
     63debian/package/<pkg-name>/clean  : Clean DebWrt Debian package <pkg-name> 
     64 
     65debian/rootfs                    : Create target Debian root filesystem 
     66debian/rootfs/install            : Install Debian root filesystem into /media/DEBWRT_ROOT 
     67debian/rootfs/save               : Create tar.bz2 image from /media/DEBWRT_ROOT ( used by DebWrt to deliver new root fs images ) 
     68debian/rootfs/files-install      : Install additional files, including some device files, to the target root filesystem 
     69debian/rootfs/modules-install    : Install the DebWrt modules package into the target root filesystem 
     70debian/rootfs/bootstrap          : Debootstrap of the target root filesystem 
     71debian/rootfs/unpack             : Re-Unpack all packages installed by debootstrap ( seemed to be needed in the past ) 
     72debian/rootfs/debwrt-packages    : Unpack DebWrt cross compiled packages into the target root filesystem 
     73debian/rootfs/clean-rootfs-dir   : Clean the target root filesystem 
     74debian/rootfs/post-setup         : Post install  
     75debian/rootfs/clean              : Clean it all 
     76}}} 
     77 
     78Links: 
     79 
     80* [http://dev.debwrt.net/wiki/DebWrtSvn] 
     81* [http://wiki.openwrt.org/doc/howto/build]