English Language flag
// Log In
// CVSweb
Project: FreeWRT
// Summary // Activity // Search // Tracker // Lists // News // SCM // Wiki

SCM Repository

ViewVC logotype

Log of /branches/common-nfo/package/broadcom-nvram

View Directory Listing Directory Listing


Sticky Revision:

Revision 3270 - Directory Listing
Modified Wed Jul 18 13:30:55 2007 UTC (6 years, 7 months ago) by tg
merge the rest

Revision 3265 - Directory Listing
Modified Wed Jul 18 12:45:43 2007 UTC (6 years, 7 months ago) by tg
copy trunk/freewrt r3264 into a new branch for making the nfo system
because upgrading the old adk branch would be a hell more work


Revision 3194 - Directory Listing
Modified Tue Jul 10 16:46:32 2007 UTC (6 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/broadcom-nvram
move that stuff to a more sensible place, ok wbx@


Revision 2693 - Directory Listing
Modified Mon Jun 4 12:10:33 2007 UTC (6 years, 8 months ago) by tg
Original Path: trunk/freewrt/package/broadcom-nvram
it's really hard to align these dots, eh? *grml*


Revision 2322 - Directory Listing
Modified Mon Apr 2 22:17:37 2007 UTC (6 years, 10 months ago) by wbx
Original Path: trunk/freewrt/package/broadcom-nvram
time to break trunk. 

* update to OpenWrt brcm-2.4 patch, wl driver and diag driver
* fix failsafe mode to use new hotplug method
* rework of mk/kernel-build.mk to use .config instead of stampfiles
* simplify mk/kernel*.mk to use $(FS) instead ifeq/else crap

a lot of small stuff.

tested and verified to boot at least on 
- Netgear WG634u
- Linksys WRT54GS v1.0
- Asus WL500gP

Only basic lan and wlan stuff (none encryption, wep) are tested.

PLEASE update only on NON-PRODUCTIVE routers with serial access.
HELP to test the new backend code for BRCM-2.4!



Revision 1956 - Directory Listing
Modified Mon Feb 12 23:16:23 2007 UTC (7 years ago) by n0-1
Original Path: trunk/freewrt/package/broadcom-nvram
this is the big config symbol renaming cleanup

changing config symbol names for the target devices
for putting them together in a more generic way caused
some trouble in the past (freewrt 1.0.1 :) and still does.

This was detected by missing switch-* modules on my
WRT54GS1.0, seems like really no one (which would include
myself) uses trunk.
big acknowledgement to grep finding all hidden goodies for me.


Revision 1691 - Directory Listing
Modified Sat Jan 20 23:04:22 2007 UTC (7 years, 1 month ago) by wbx
Original Path: trunk/freewrt/package/broadcom-nvram
Copied from: trunk/freewrt/package/nvram revision 1686
rename nvram package -> broadcom-nvram

Revision 1686 - Directory Listing
Modified Sat Jan 20 21:21:59 2007 UTC (7 years, 1 month ago) by n0-1
Original Path: trunk/freewrt/package/nvram
merged from branches/common-adk 1310:1685

the following packages are not converted yet:
* alsa
* asterisk
* pmacct
* zaptel
* elinks
* libgd
* lua
* mypackage
* openser
* php*
* snort*
* tmsnc

additionally, freeradius doesn't compile.

happy fixing :P


Revision 943 - Directory Listing
Modified Mon Oct 16 22:21:28 2006 UTC (7 years, 4 months ago) by wbx
Original Path: trunk/freewrt/package/nvram
fix most parts of my braindead misuse of "select".

There are two methods to depend on different packages/options.

Soft dependency, user can deselect:
add to the package "foo" dependencies to device or filesystem "bar":
config FWRT_PACKAGE_FOO
 default y if FWRT_TARGET_BAR
 default n
 depends on FWRT_TARGET_BAR

If you want a hard dependency, user can't deselect, then
add a select to FWRT_TARGET_BAR
config FWRT_TARGET_BAR
 select FWRT_PACKAGE_FOO

For menus wich are only relevant for specific devices, use a
depends on line (see USB kernel modules for example).

After discussion with Phil, who said it really sucks to remove a .config before 
switching between devices or filesystems. He was right.



Revision 719 - Directory Listing
Modified Mon Sep 25 21:16:56 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/nvram
* add PKG_VERSION to every package in default selection
* add broadcom-scripts package as default for 1.0, it adds
  network and switch configuration scripts to base
  suggested by markus to separate these from webif package
* move ed to application and disable by default, sorry tg, but
  not everybody needs it
* be sure that if broadcom-scripts are installed, new ifup/ifdown
  network configuration is not used



Revision 600 - Directory Listing
Modified Sat Sep 16 16:21:37 2006 UTC (7 years, 5 months ago) by wbx
Original Path: trunk/freewrt/package/nvram
major package Makefile cleanup. remove mostly-clean, add licence header, always use RSTRIP varibale for stripping, rename some init scripts, indent

Revision 360 - Directory Listing
Modified Sat Jul 22 15:48:30 2006 UTC (7 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/nvram
as discussed with wbx@ some 2-3 weeks ago, change
the BR2_ prefix to FWRT_

tested with a standard build (only the squashfs
image since the jffs2 didn't get built)



Revision 331 - Directory Listing
Modified Fri Jul 21 20:35:54 2006 UTC (7 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/nvram
this is what you people get for using := ...

also fix some indentation while here



Revision 306 - Directory Listing
Modified Fri Jul 21 00:07:59 2006 UTC (7 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/nvram
instead of setting WRKBUILD, set WRKSRC and let WRKBUILD?=WRKSRC like mirports
(WRKSRC isn't used anywhere though)


Revision 303 - Directory Listing
Modified Thu Jul 20 23:56:32 2006 UTC (7 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/nvram
* whitespace cleanup, while here
* move WRKDIR and DISTFILES definition into PKG_template
* define WRKDIR via parent BUILD_DIR instead of going up from WRKSRC
* use a sub-directory as WRKDIR, like BSD
* rename PKG_BUILD_DIR into WRKBUILD
* define WRKBUILD relative via WRKDIR
* rename PKG_INSTALL_DIR into WRKINST
* fix a few dependencies
* make use of common cases in the definition of WRKBUILD and
  WRKINST, removing many redundant lines
* use WRKDIR instead of BUILD_DIR in places where the latter
  was used previously
* while here, remove PKG_CAT stuff

this only affects packages, for now



Revision 259 - Directory Listing
Modified Mon Jul 17 00:32:22 2006 UTC (7 years, 7 months ago) by tg
Original Path: trunk/freewrt/package/nvram
some files don't need our EXTRACT_CMD
empty DISTFILES will do


Revision 157 - Directory Listing
Modified Fri Jun 30 19:02:45 2006 UTC (7 years, 7 months ago) by wbx
Original Path: trunk/freewrt/package/nvram
- add hardware profiles, you can choose between different
 hardware models
- add some alsa patches
- remove default stuff



Revision 68 - Directory Listing
Modified Fri Jun 16 18:27:37 2006 UTC (7 years, 8 months ago) by wbx
Original Path: trunk/freewrt/package/nvram
some OpenWrt -> FreeWRT changes, remove some host information from kernel-header patch, try to fix some package descriptions

Revision 1 - Directory Listing
Added Sat May 27 15:00:14 2006 UTC (7 years, 9 months ago) by wbx
Original Path: trunk/freewrt/package/nvram
add OpenWrt trunk revision 3830. 



root@freewrt.org:443
ViewVC Help
Powered by ViewVC 1.1.20