wok diff busybox-boot/receipt @ rev 15666

Add ddumbfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 13 16:18:29 2013 +0000 (2013-12-13)
parents 2ecc1cd5a9a4
children e30c03f14110
line diff
     1.1 --- a/busybox-boot/receipt	Thu Nov 21 20:08:27 2013 +0000
     1.2 +++ b/busybox-boot/receipt	Fri Dec 13 16:18:29 2013 +0000
     1.3 @@ -6,11 +6,12 @@
     1.4  SHORT_DESC="Many common UNIX utilities for core-5in1/boot flavor."
     1.5  MAINTAINER="pascal.bellard@slitaz.org"
     1.6  LICENSE="GPL2"
     1.7 -DEPENDS="linux syslinux"
     1.8  WANTED="busybox"
     1.9  WEB_SITE="http://www.busybox.net/"
    1.10  CONFIG_FILES=""
    1.11  
    1.12 +DEPENDS="linux syslinux"
    1.13 +
    1.14  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.15  genpkg_rules()
    1.16  {
    1.17 @@ -64,8 +65,12 @@
    1.18  loop	7	0
    1.19  hda	3	0
    1.20  hdb	3	64
    1.21 +hdc	22	0
    1.22 +hdd	22	64
    1.23  sda	8	0
    1.24  sdb	8	16
    1.25 +sdc	8	32
    1.26 +sdd	8	48
    1.27  EOM
    1.28  
    1.29  arg()
    1.30 @@ -89,11 +94,13 @@
    1.31  
    1.32  [ -d /proc/bus/usb ] && mount -t usbfs usbfs /proc/bus/usb
    1.33  while read type dir ; do
    1.34 -	grep -qs \$type /proc/filesystems &&
    1.35 -	mkdir \$dir && mount -t \$type none \$dir
    1.36 +	grep -qs \$type /proc/filesystems || continue
    1.37 +	mkdir \$dir
    1.38 +	mount -t \$type none \$dir
    1.39  done <<EOM
    1.40 -sysfs	/sys
    1.41 -devpts	/dev/pts
    1.42 +sysfs		/sys
    1.43 +devtmpfs	/dev
    1.44 +devpts		/dev/pts
    1.45  EOM
    1.46  
    1.47  TTY=\$(tty 2>/dev/null)