You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
freshtomato-arm/release/src-rt-6.x.4708/router
pedro 3eb1428cdf Merge branch 'arm-master' into arm-sdk7 4 years ago
..
accel-pptp
apcupsd
bridge
bsd
busybox busybox: update to 1.33.1 4 years ago
comgt
compressed
config Merge branch 'arm-master' into arm-sdk7 4 years ago
conntrack-tools
cstats
dhcpv6
diskdev_cmds-332.25
dnscrypt
dnsmasq
dpsta
dropbear
e2fsprogs
eapd_arm
eapd_arm_7/linux
ebtables
emf_arm
emf_arm_7
ffmpeg
flac
getdns
glib
gmp
hotplug2
httpd httpd: wl.c: use logmsg(); clean-up; one version for ARM and MIPS branch. 4 years ago
igmpproxy
iperf iperf2: update to 3.9 4 years ago
iproute2-3.x
ipset
iptables-1.8.x
jffsfilegen
jpeg
layer7
libbcm
libbcmcrypto
libcurl libcurl: update to 7.77.0 4 years ago
libevent
libexif
libiconv
libid3tag
libjson-c
libmnl
libncurses
libnetfilter_conntrack
libnetfilter_cttimeout
libnetfilter_log
libnetfilter_queue
libnfnetlink
libnfsidmap
libogg
libpng
libsodium
libusb10
libvorbis
libxml2 libxml2: update to 2.9.12 + libs optimization 4 years ago
libyaml
lzo
mdadm
mdu
minidlna minidlna: update to 1.3.0 4 years ago
miniupnpd revert partially commit 5ddf368 - incorrect files have been added accidentally 4 years ago
mssl
mysql
nano nano: update to 5.7 4 years ago
nas_arm
nas_arm_7
nettle
nfs-utils
nginx nginx: update to 1.21.0 4 years ago
nocat
ntfs-3g
nvram_arm
openssl
openssl-1.1
openvpn
openvpn_plugin_auth_nvram
others others: mymotd: code improvements, thanks to @WildFireSG 4 years ago
p910nd
patches vsftpd: update to 3.0.4 4 years ago
pcre
pdureader
php
portmap
pppd
pptpd
rc Merge branch 'arm-master' into arm-sdk7 4 years ago
rom libcurl: update CA certificate bundle as of 2021-05-25 4 years ago
rp-pppoe rp-pppoe: update to 3.15 4 years ago
rstats
samba3
sd-idle
shared Merge branch 'arm-master' into arm-sdk7 4 years ago
snmp snmp: update to 5.9.1 4 years ago
spawn-fcgi
sqlite
taskset
tinc tinc: update to d100eb0 (2021.04.15) snaphot 4 years ago
tor tor: update to 0.4.5.8 4 years ago
transmission transmission: add missing file in prepackaged source build for tr 3.00 4 years ago
tuxera
udevtrigger
udpxy
ufsd-asus
uqmi
usbmodeswitch
utils_arm
utils_arm_7
vsftpd vsftpd: update to 3.0.4 4 years ago
wanuptime
wireguard-tools
wlconf_arm
wlconf_arm_7
wsdd2
www Status: Device List: add network discovery helper 4 years ago
xl2tpd
zlib
Makefile Merge branch 'arm-master' into arm-sdk7 4 years ago
README
common.mak Merge branch 'arm-master' into arm-sdk7 4 years ago
config_base Merge branch 'arm-master' into arm-sdk7 4 years ago
nvram_arm_7

README

#
# Broadcom Linux Router Configuration
#
# Copyright 2005, Broadcom Corporation
# All Rights Reserved.
# 
# THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
# KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
# SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
#
# $Id: README,v 1.1.1.7 2005/03/07 07:31:12 kanki Exp $
#

* Introduction

To compile the Broadcom Linux Router package, you must have both
mipsel-linux and mipsel-uclibc toolchains in your PATH.

/opt/brcm/hndtools-mipsel-linux/bin
/opt/brcm/hndtools-mipsel-uclibc/bin


** Configuration

To configure the package, type "make menuconfig". The Linux kernel will
be configured as well.

** Compilation

To compile after configuring, type "make". The Linux kernel will be
built as well.

To compile only a particular module (e.g. rc), type "make rc".

** Installation

To package for direct installation, type "make install" or "make
package". Linux kernel modules will be installed as well.

If uClibc was selected, "make install" will create a linux.trx file in
"mipsel-uclibc/". If uClibc was not selected, a linux.trx file will be
created in "mipsel/".

** Cleaning

It is recommended that "make clean" be run after a configuration change
is made. By default, "make clean" will not clean the kernel. Uncomment
the last line of the "clean" target in the Makefile to enable kernel
cleaning.

* Customization

See config/Kconfig-language.txt for a description of the configuration
language used for user applications. Although its configuration program
appears similar, the Linux kernel uses a slightly different
language. See ../linux/linux/Documentation/kbuild/config-language.txt.

To add a new user application to the package, edit config/Config and
name the module rule under the "Configuration" section of the
Makefile. If the module can be built, cleaned, and installed with the
generic rules located at the end of the Makefile, no further changes are
necessary. Otherwise, add additional rules for the module under the
"Overrides" section of the Makefile. "make <module>" should descend into
the module directory and compile the sources. "make <module>-install"
should install the appropriate binaries as if "$(INSTALLDIR)/<module>"
were the root directory. "make <module>-clean" should clean generated
files from the module directory.

See the rules for "www" for a simple example.