git log --pretty=email --patch-with-stat --reverse --full-index --binary directory_name > /tmp/directory_name_patch;
git init directory_name;
cd directory_name;
git am < /tmp/directory_name_patch;
Tag Archives: repo
Dell BIOS updates using Linux
Dell provides Ubuntu support for updating the BIOS of Dell systems:
http://direct2dell.com/one2one/archive/2007/12/05/37446.aspx
… be sure the Universe section is enabled in /etc/apt/sources.list, then run as root:
wget -q -O – http://linux.dell.com/repo/firmware/bootstrap.cgi | bash
aptitude install firmware-addon-dell
aptitude install $(bootstrap_firmware -a)
update_firmware
Thanks Dell!