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 e9135cf372 Bump version to 2024.2 1 year ago
..
accel-pptp
apcupsd
avahi
bridge
bsd
busybox
comgt
compressed
config
conntrack-tools
cstats build: Makefiles: clean-up; one version for ARM and MIPS 1 year ago
dhcpv6
dhd
dhd_arm_714
diskdev_cmds-332.25
dnscrypt
dnsmasq
dpsta
dropbear dropbear: update to 2024.85 1 year ago
e2fsprogs
eapd_arm
eapd_arm_7/linux
eapd_arm_714/linux
ebtables
emf_arm
emf_arm_7
emf_arm_714
expat expat: update to 2.6.2 1 year ago
ffmpeg
flac
getdns getdns: fix for broken trust anchor files are silently ignored 1 year ago
gettext-tiny gettext-tiny: update to 86d9b99 (2024-01-21) snapshot 1 year ago
glib
glib2
gmp
haveged
hotplug2
httpd Asus RT-AC5300: allow to disable/shut down broken wireless radios 1 year ago
igmpproxy
iperf
iproute2-3.x
ipset
iptables-1.8.x
irqbalance
jffsfilegen
lacp
layer7
libbcm
libbcmcrypto
libcap-ng libcap-ng: update to 0.8.5 1 year ago
libcurl libcurl: update to 8.7.1 1 year ago
libdaemon
libevent
libexif
libffi
libiconv
libid3tag
libjpeg-turbo
libjson-c
libmnl
libncurses
libnetfilter_conntrack
libnetfilter_cttimeout
libnetfilter_log
libnetfilter_queue
libnfnetlink
libnfsidmap
libogg
libpng
libsodium libsodium: update to latest 1.0.19-stable 1 year ago
libubox
libusb10
libvorbis
libxml2
libyaml
libzip
lz4
lzo
mdadm
mdu mdu: support special case, when ifname is set to 'none' or proto is 'disabled' - use default WAN 1 year ago
meson
minidlna
miniupnpd miniupnpd: update to 2.3.6 1 year ago
mssl build: Makefiles: clean-up; one version for ARM and MIPS 1 year ago
mysql
nano
nas_arm
nas_arm_7
nas_arm_714
nettle
nfs-utils
nginx nginx: update to 1.26.0 1 year ago
nocat
ntfs-3g
nvram_arm nvram: fix behavior of 'convert' option 1 year ago
openssl
openssl-1.1
openvpn openvpn: update to 2.6.10 1 year ago
openvpn_plugin_auth_nvram
others mwwatchdog: rename nvram variable for log debugging, to be different than in mwan.c scrip 1 year ago
p910nd
patches dropbear: update to 2024.85 1 year ago
pcre
pcre2
php php: update to 8.3.6 1 year ago
php7
portmap
pppd
pptpd
rc Asus RT-AC5300: allow to disable/shut down broken wireless radios 1 year ago
rom
rp-pppoe
rstats build: Makefiles: clean-up; one version for ARM and MIPS 1 year ago
rtl_bin
samba3
sd-idle
shared Bump version to 2024.2 1 year ago
snmp
spawn-fcgi
sqlite sqlite: update to 3.45.3 1 year ago
taskset
tinc tinc: update to d9e42fa (2024-04-07) snapshot 1 year ago
tor
transmission
tuxera
udevtrigger
udpxy udpxy: Fixed uninitialized source address 1 year ago
ufsd-asus
uqmi
usbmodeswitch
util-linux util-linux: update to 2.39.4 1 year ago
utils_arm
utils_arm_7
utils_arm_714
vsftpd
wanuptime build: Makefiles: clean-up; one version for ARM and MIPS 1 year ago
wireguard-tools
wlconf_arm
wlconf_arm_7
wlconf_arm_714
wsdd2
www Asus RT-AC5300: allow to disable/shut down broken wireless radios 1 year ago
xl2tpd
zfs
zlib
Makefile build: Makefile: util-linux: disable nls 1 year ago
Makefile.fw
README
common.mak
config_base
nvram_arm_7
nvram_arm_714

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.