Tuesday, September 14, 2010

CentOS Kernels

 So, recently I went through the CentOS 5 series kernel SRPMs and made a git repository out of them to be integrated into an LXR that I use.  If anyone is interested here is the link:

http://github.com/spacex/kernel-centos5

Eventually, I plan to work through the CentOS 4 series as well, but that requires me to set up a CentOS 4 box that I don't have right now.

Enjoy!

Monday, August 30, 2010

HOWTO - list git tags by date

OK, so being new to git, I wanted to get a chronological list of git tags by date, rather than alphabetically, so I tweaked and found this command:

git for-each-ref refs/tags --sort=taggerdate --format="%(refname:short)"

hope it helps someone else ... enjoy!