CVS log for ports/palm/uppc-kmod/Attic/Makefile
Up to [FreeBSD] / ports / palm / uppc-kmod
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.30
Mon May 2 05:34:15 2011 UTC (9 months, 1 week ago) by bapt
Branches: MAIN
CVS tags: HEAD
FILE REMOVED
Changes since revision 1.29: +1 -1 lines
Remove unmaintain expired ports from palm 2011-05-01 palm/jfconv: Upstream disapear and distfile is no more available 2011-05-01 palm/palmpower: Upstream disapear and distfile is no more available 2011-05-01 palm/sitescooper: Upstream disapear and distfile is no more available 2011-05-01 palm/uppc-kmod: Upstream disapear and distfile is no more available
Revision 1.29: download - view: text, markup, annotated - select for diffs
Mon Mar 14 07:18:54 2011 UTC (10 months, 4 weeks ago) by bapt
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +3 -0 lines
Deprecate unmaintained ports from palm where upstream disapear and/or where no distfiles can be found and are not used by maintained ports
Revision 1.28: download - view: text, markup, annotated - select for diffs
Fri Dec 17 03:51:24 2010 UTC (13 months, 3 weeks ago) by linimon
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_7_4_0
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -2 lines
Use the $SRC_BASE Makevar instead of hard-coding. Hat: portmgr
Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed May 27 07:17:07 2009 UTC (2 years, 8 months ago) by erwin
Branches: MAIN
CVS tags: RELEASE_8_1_0, RELEASE_8_0_0, RELEASE_7_3_0, RELEASE_6_EOL
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +4 -0 lines
Mark BROKEN on 8.x: does not build.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Tue Jan 6 17:59:16 2009 UTC (3 years, 1 month ago) by pav
Branches: MAIN
CVS tags: RELEASE_7_2_0
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +0 -3 lines
- Remove conditional checks for FreeBSD 5.x and older
Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Mar 25 09:18:03 2008 UTC (3 years, 10 months ago) by itetcu
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_6_4_0, RELEASE_5_EOL
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +1 -1 lines
Write MASTER_STIES path right this time.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Tue Mar 25 08:54:26 2008 UTC (3 years, 10 months ago) by itetcu
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +1 -1 lines
Adjust MASTER_SITES to an other server of mine, since the old one will be gone shortly.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Jan 2 21:29:27 2008 UTC (4 years, 1 month ago) by lioux
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +1 -5 lines
o Remove BROKEN, it actually does not build due to the lack of a header file include required for __FreeBSD_version >= 700049: patch uppc.c accordingly o Fix uppcsetup: kldxref(8) module directory when it is installed o Bump PORTREVSION due to uppcsetup script change
Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Jan 2 01:32:44 2008 UTC (4 years, 1 month ago) by lioux
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +1 -1 lines
Update MASTER_SITES
Revision 1.21: download - view: text, markup, annotated - select for diffs
Sun Oct 7 02:56:19 2007 UTC (4 years, 4 months ago) by edwin
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -7 lines
Replace all INSTALL_DATA/INSTALL_SCRIPT and INSTALL_PROGRAM/STRIP= hacks to install kernel loadable modules correctly on amd64 platforms with the new INSTALL_KLD command. All PORTREVISIONS have been bumped to show when the new version of installing became available.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Oct 1 06:04:56 2007 UTC (4 years, 4 months ago) by linimon
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +4 -0 lines
Mark as broken with gcc4.2.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Sep 8 12:31:14 2007 UTC (4 years, 5 months ago) by edwin
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +5 -0 lines
uppc kmod installation problem on amd64 Please see a discussion thread starting with the following message: http://lists.freebsd.org/pipermail/freebsd-ports/2007-August/042999.html It seems that installation action of uppc-kmod port (do-install target) uses incorrect tool to put uppc.ko in its destination. It seems that the tool (${INSTALL_PROGRAM}) corrupts the .ko, so that it is not a valid kernel module anymore. If I put uppc.ko into /boot/kernel and do kldxref then kldxref complains about missing symbol table in uppc.ko and dumps core. If the module is loaded then it crashes my system. On the other hand, if I simply copy uppc.ko from work directory then it works ok. Essentially this is the same issue as described in the following PR only with another port: http://www.freebsd.org/cgi/query-pr.cgi?pr=100703 Kostik Belousov confirms the issue with stripping kernel modules on amd64: You cannot strip kernel modules on amd64, because modules are elf object files, as opposed to shared objects on all other archs. Strip strips the object file symbol table, that is used by the static linker and in-kernel linker on amd64. On the other hand, shared object contains also a dynamic symbol table, that is not stripped and used by in-kernel linker on !amd64. PR: ports/115517 Submitted by: Andriy Gapon <avg@icyb.net.ua>
Revision 1.18: download - view: text, markup, annotated - select for diffs
Fri Jun 29 09:16:40 2007 UTC (4 years, 7 months ago) by linimon
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +1 -1 lines
Populate the 'kld' virtual category, for ports that install Kernel Loadable modules. Hat: portmgr
Revision 1.17: download - view: text, markup, annotated - select for diffs
Thu Apr 19 22:33:19 2007 UTC (4 years, 9 months ago) by edwin
Branches: MAIN
CVS tags: PRE_XORG_7
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -1 lines
fix breakage due to removal of bsd.port.pre.mk Pointy hat to: gabor Noticed by: dvl@
Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Apr 19 21:20:47 2007 UTC (4 years, 9 months ago) by gabor
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -7 lines
- Remove FreeBSD 4.X support from unmaintained ports in categories starting with letter n-p
Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Jan 30 20:09:12 2007 UTC (5 years ago) by anray
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +1 -0 lines
Add Samsung SCH-I730 support.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Mon Jan 30 20:17:31 2006 UTC (6 years ago) by lawrance
Branches: MAIN
CVS tags: RELEASE_6_2_0, RELEASE_6_1_0, RELEASE_5_5_0, RELEASE_4_EOL
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +4 -2 lines
Up to 0.8. Tiny change to chase the renaming of ucom* to cuaU*.
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Oct 29 04:25:00 2005 UTC (6 years, 3 months ago) by lawrance
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +1 -1 lines
Drop maintainership since I no longer have a pocket pc. I'll be keeping an eye on these, especially uppc-kmod in case anyone wants to take it over and keep it working.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Apr 12 13:00:32 2005 UTC (6 years, 10 months ago) by lawrance
Branches: MAIN
CVS tags: RELEASE_6_0_0
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +1 -1 lines
Set my ports to their shiny new MAINTAINER address. Approved by: clement (mentor)
Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu Mar 31 06:42:14 2005 UTC (6 years, 10 months ago) by krion
Branches: MAIN
CVS tags: RELEASE_5_4_0
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +1 -3 lines
Fix MASTER_SITES. PR: ports/79388 Submitted by: maintainer Approved by: portmgr (implicit)
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Mar 26 22:38:42 2005 UTC (6 years, 10 months ago) by kris
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -0 lines
BROKEN: Unfetchable Approved by: portmgr (self)
Revision 1.9: download - view: text, markup, annotated - select for diffs
Wed Jan 19 16:59:18 2005 UTC (7 years ago) by vs
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -1 lines
Unquote IGNORE. PR: ports/76095 Submitted by: Sam Lawrance
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Dec 11 21:48:53 2004 UTC (7 years, 2 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_4_11_0
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +7 -1 lines
BROKEN on 4.x: Does not build
Revision 1.7: download - view: text, markup, annotated - select for diffs
Mon Sep 27 22:56:27 2004 UTC (7 years, 4 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_5_3_0
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +0 -4 lines
Now builds on amd64 Approved by: portmgr (self)
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Sep 25 08:04:43 2004 UTC (7 years, 4 months ago) by thierry
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Update to 0.7 to fix build failure (deal with usbdevs changes). PR: ports/71634 Submitted by: maintainer Approved by: portmgr (marcus)
Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Jun 25 07:28:27 2004 UTC (7 years, 7 months ago) by krion
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1 lines
Update to version 0.6 PR: ports/68278 Submitted by: maintainer
Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Mar 26 03:08:09 2004 UTC (7 years, 10 months ago) by kevlo
Branches: MAIN
CVS tags: RELEASE_4_10_0
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +3 -2 lines
Update to 0.5
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Feb 27 09:03:42 2004 UTC (7 years, 11 months ago) by krion
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -0 lines
- Mark BROKEN on AMD64 PR: ports/63420 Submitted by: Hendrik Scholz <hendrik@scholz.net>
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Jan 10 07:18:55 2004 UTC (8 years, 1 month ago) by marcus
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
Substitute BROKEN with IGNORE in cases where the port requires the src tree to be present, or does not compile on certain versions of FreeBSD. This will potentially avoid needless compilations on bento, and has the added benefit of improving certain reporting tools. To most users, this change is a no-op. PR: 61090 Submitted by: linimon
Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Dec 29 16:33:02 2003 UTC (8 years, 1 month ago) by pav
Branches: MAIN
Add uppc-kmod, USB device driver for Windows CE handhelds which provides serial tty interface. PR: ports/56225 Submitted by: Sam Lawrance <boris@brooknet.com.au> According to FreshPorts, this is our 10000th port!
