Changeset 252

Show
Ignore:
Timestamp:
07/20/08 10:13:55 (4 years ago)
Author:
root
Message:

Bumping version and fixes based on reports from Jay Rogozinsky

Location:
floppyfw-3.0
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • floppyfw-3.0/Makefile

    r245 r252  
    3838 
    3939# Which version of floppyfw is this? 
    40 FLOPPYFW_VERSION=3.0.7 
     40FLOPPYFW_VERSION=3.0.8 
    4141 
    4242# What sortof target system shall we compile this for? 
  • floppyfw-3.0/makefiles/busybox.mk

    r245 r252  
    77# BUSYBOX_VERSION=1.2.2.1 
    88# BUSYBOX_VERSION=1.10.4 
    9 BUSYBOX_VERSION=1.11.0 
     9BUSYBOX_VERSION=1.11.1 
    1010 
    1111ifeq ($(USE_BUSYBOX_SNAPSHOT),true) 
  • floppyfw-3.0/scripts/network.ini

    r103 r252  
    214214        /etc/udhcpd.conf.sh 
    215215        /sbin/udhcpd /etc/udhcpd.conf 
    216         [ $p ] || /sbin/dnsmasq $DNSMASQ_OPTS  
     216        pidof dnsmasq || /sbin/dnsmasq $DNSMASQ_OPTS  
    217217else 
    218218        if [ "$DNSMASQ" = y ] 
    219219        then 
    220                 [ $p ] || /sbin/dnsmasq $DNSMASQ_OPTS 
     220                pidof dnsmasq || /sbin/dnsmasq $DNSMASQ_OPTS  
    221221        fi 
    222222fi 
     
    226226        /etc/dmz-udhcpd.conf.sh 
    227227        /sbin/udhcpd /etc/dmz-udhcpd.conf 
    228         [ $p ] || /sbin/dnsmasq $DNSMASQ_OPTS  
    229 fi 
     228        pidof dnsmasq || /sbin/dnsmasq $DNSMASQ_OPTS  
     229fi