Changeset 276

Show
Ignore:
Timestamp:
07/17/06 06:11:18 (2 years ago)
Author:
tg
Message:

this is FreeWRT not OpenWrt?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/base-files/default/etc/init.d/S10boot

    r271 r276  
    22. /etc/functions.sh 
    33 
    4 [ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc 
     4[ -f /proc/jffs2_bbc ] && echo S >/proc/jffs2_bbc 
    55 
    66mkdir -p /var/run 
     
    88touch /var/log/wtmp 
    99touch /var/log/lastlog 
    10 [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe 
     10[ "$FAILSAFE" = true ] && touch /tmp/.failsafe 
    1111 
    1212load_modules /etc/modules /etc/modules.d/* 
     
    1616 
    1717# configure the switch based on nvram 
    18 [ -d /proc/switch/eth0 ] && { 
    19         for nr in $(seq 0 15); do 
    20                 vp="$(nvram get vlan${nr}ports)" 
    21                 [ -z "$vp" -o -z "$(nvram get vlan${nr}hwname)" ] || { 
    22                         echo "$vp" > /proc/switch/eth0/vlan/$nr/ports 
    23                 } 
    24         done 
    25 
     18[ -d /proc/switch/eth0 ] && for nr in $(seq 0 15); do 
     19        vp="$(nvram get vlan${nr}ports)" 
     20        [ -z "$vp" -o -z "$(nvram get vlan${nr}hwname)" ] || \ 
     21            echo "$vp" >/proc/switch/eth0/vlan/$nr/ports 
     22done 
    2623 
    2724HOSTNAME=$(nvram get wan_hostname) 
    2825HOSTNAME=${HOSTNAME%%.*} 
    29 echo ${HOSTNAME:=OpenWrt}>/proc/sys/kernel/hostname 
     26echo ${HOSTNAME:=FreeWRT} >/proc/sys/kernel/hostname 
    3027 
    3128vconfig set_name_type VLAN_PLUS_VID_NO_PAD 
  • trunk/freewrt/package/bitlbee/Makefile

    r1 r276  
    3636                --datadir=/usr/share/bitlbee/ \ 
    3737                --config=/var/lib/bitlbee/ \ 
    38                 --arch=OpenWrt
     38                --arch=FreeWRT
    3939                --cpu="$(ARCH)" \ 
    4040                --debug=0 \ 
  • trunk/freewrt/package/bitlbee/patches/100-cross_compile_configure_fix

    r1 r276  
    9090        echo 'Cygwin is not officially supported.' 
    9191 ;; 
    92 +OpenWrt
     92+FreeWRT
    9393+       echo 'EFLAGS+=-liconv' >> Makefile.settings; 
    9494+       echo "CFLAGS+=\"-I$STAGING_DIR/usr/include\"" >> Makefile.settings; 
  • trunk/freewrt/package/bluez-utils/patches/002-hcid_pin_helper.patch

    r1 r276  
    1616        #   %h - host name 
    1717-       name "BlueZ (%d)"; 
    18 +       name "OpenWRT"; 
     18+       name "FreeWRT"; 
    1919  
    2020        # Local device class 
  • trunk/freewrt/package/fuse/patches/111-uclibc_changes.patch

    r1 r276  
    77 #define FUSE_DEV_OLD "/proc/fs/fuse/dev" 
    88+#ifdef __UCLIBC__ 
    9 +/* /dev is mounted as devfs in OpenWRT, and device is created here */ 
     9+/* /dev is mounted as devfs in FreeWRT, and device is created here */ 
    1010+#define FUSE_DEV_NEW "/dev/misc/fuse" 
    1111+#else 
  • trunk/freewrt/package/openssl/Makefile

    r1 r276  
    2828$(PKG_BUILD_DIR)/.configured: 
    2929        $(SED) 's,/CFLAG=,/CFLAG= $(TARGET_SOFT_FLOAT) ,g' $(PKG_BUILD_DIR)/Configure 
    30         $(SED) s/OPENWRT_OPTIMIZATION_FLAGS/$(BR2_TARGET_OPTIMIZATION)/g $(PKG_BUILD_DIR)/Configure 
     30        $(SED) s/FREEWRT_OPTIMIZATION_FLAGS/$(BR2_TARGET_OPTIMIZATION)/g $(PKG_BUILD_DIR)/Configure 
    3131        (cd $(PKG_BUILD_DIR); \ 
    3232                PATH=$(TARGET_PATH) \ 
    33                 ./Configure linux-openwrt \ 
     33                ./Configure linux-freewrt \ 
    3434                  --prefix=/usr \ 
    3535                  --openssldir=/etc/ssl \ 
  • trunk/freewrt/package/openssl/patches/110-optimize-for-size.patch

    r1 r276  
    66 "linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${no_asm}", 
    77 "linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${no_asm}", 
    8 +# OpenWrt targets 
    9 +"linux-openwrt","gcc:-DTERMIO OPENWRT_OPTIMIZATION_FLAGS -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", 
     8+# FreeWRT targets 
     9+"linux-freewrt","gcc:-DTERMIO FREEWRT_OPTIMIZATION_FLAGS -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", 
    1010  
    1111 #### *BSD [do see comment about ${BSDthreads} above!] 
  • trunk/freewrt/package/ppp/utils/pfc.c

    r1 r276  
    11/*  
    22 * Taken from fli4l 3.0 
    3  * Make sure you compile it against the same libpcap version used in OpenWrt 
     3 * Make sure you compile it against the same libpcap version used in FreeWRT 
    44 */ 
    55 
  • trunk/freewrt/package/privoxy/patches/100-crosscompile.patch

    r1 r276  
    77 dnl AC_FUNC_MALLOC 
    88-AC_FUNC_SETPGRP 
    9 +dnl uncommenting does not work for openwrt 
     9+dnl uncommenting does not work for FreeWRT 
    1010+dnl AC_FUNC_SETPGRP 
    1111 AC_TYPE_SIGNAL 
  • trunk/freewrt/package/robocfg/robocfg.c

    r1 r276  
    240240                        "robocfg switch disable vlans enable reset vlan 0 ports \"0 5u\" vlan 1 ports \"1 2 3 4 5t\"" 
    241241                        " port 0 state enabled stp none switch enable\n" 
    242                         "2) WRT54g, WL-500g Deluxe OpenWRT config (vlan0 is LAN, vlan1 is WAN):\n" 
     242                        "2) WRT54g, WL-500g Deluxe FreeWRT config (vlan0 is LAN, vlan1 is WAN):\n" 
    243243                        "robocfg switch disable vlans enable reset vlan 0 ports \"1 2 3 4 5t\" vlan 1 ports \"0 5t\"" 
    244244                        " port 0 state enabled stp none switch enable\n", 
  • trunk/freewrt/package/rrdcollect/files/rrd.conf

    r1 r276  
    4444#            RES=4 -> 4 pixel represents one interval 
    4545 
    46 # Optimized values for storing rather small rrd-files on the openwrt-box 
     46# Optimized values for storing rather small rrd-files on the FreeWRT-box 
    4747HOURS=24;H_RES=2;DAYS=7;D_RES=4;WEEKS=4;W_RES=4; 
    4848# Measure-Step (Same value should be in the rrdcollect.conf) Optimal: STEP=$HOURS / $PIXWIDTH * 3600 * $H_RES 
  • trunk/freewrt/package/wifidog/files/wifidog.conf

    r1 r276  
    1616# Optional 
    1717# 
    18 # Set this to the external interface.  Typically vlan1 for OpenWrt, and eth0 or ppp0 otherwise 
     18# Set this to the external interface.  Typically vlan1 for FreeWRT, and eth0 or ppp0 otherwise 
    1919 
    2020# ExternalInterface eth0 
     
    2424# Mandatory 
    2525# 
    26 # Set this to the internal interface.    Typically br0 for OpenWrt, and eth1 otherwise 
     26# Set this to the internal interface.    Typically br0 for FreeWRT, and eth1 otherwise 
    2727 
    2828GatewayInterface br0 
  • trunk/freewrt/package/wiviz/files/www/wiviz/wiviz.html

    r1 r276  
    2323</head> 
    2424<body> 
    25 <h2>OpenWRT Wi-viz network visualization</h2> 
     25<h2>FreeWRT Wi-viz network visualization</h2> 
    2626<div class='floater'> 
    2727Status: <span id='status' class='status'>Monitoring</span><br> 
  • trunk/freewrt/package/wiviz/src/Makefile

    r1 r276  
    11## Wi-viz makefile 
    2 # Supply your own C cross-compiler; I recommend the one from the OpenWRT buildroot 
     2# Supply your own C cross-compiler; I recommend the one from the FreeWRT buildroot 
    33# Also requires a libpcap to link with, use libpcap.a for static, .so for shared 
    44CC=~/buildroot/staging_dir_mipsel/bin/mipsel-linux-gcc