tuxsavvy / agere_fw_utils (public) (License: Dual BSD 3-clause and GPLv2) (since 2021-02-07) (hash sha1)
Personal fork of https://repo.or.cz/agere_fw_utils.git
List of commits:
Subject Hash Author Date (UTC)
Convert primary plugdata properly 933f77d11ca6645df705c4b71c471aa670fccaf3 David Kilroy 2008-10-26 14:39:28
Convert AirPort firmware version 1f31f74c58179b099005ae939eff9bb467317b5b David Kilroy 2008-10-26 14:37:57
Mach-O parsing from Dan Williams 525f9168679392920da51d2487cc5fdba3c68e2c David Kilroy 2008-10-26 14:34:59
Check if we are in wl_lkm tree and build appropriately 4af298b374a1dea172b57acbd080773912d22087 David Kilroy 2008-10-26 14:30:33
Use C99 types 11362c209f9ec7369931b9a25a407c21476c48e4 David Kilroy 2008-10-26 14:30:03
hfwget refactorring posted as hfwget2 April 2008 9b77acdf3330592acda5261d282c579cc1497637 David Kilroy 2008-10-26 14:27:32
dump_fw and hfwget posted Sep 2007 77d205076542510222c6e8359bb2647b0d4e0873 David Kilroy 2008-10-26 14:22:02
Add hfwget.c from hermesap-0.2 9239c21487b524cf0f87b4ffa4828793713fbecd David Kilroy 2008-10-26 14:20:38
dump_fw posted June 2007 617a0ae960430d0d93a533ac5dffc7b9c07a777a David Kilroy 2008-10-26 14:19:45
Commit 933f77d11ca6645df705c4b71c471aa670fccaf3 - Convert primary plugdata properly
Author: David Kilroy
Author date (UTC): 2008-10-26 14:39
Committer name: David Kilroy
Committer date (UTC): 2008-10-26 14:39
Parent(s): 1f31f74c58179b099005ae939eff9bb467317b5b
Signer:
Signing key:
Signing status: N
Tree: 951dbaed679f0fc5a0ae756ec57ac21a276315d3
File Lines added Lines deleted
hfwget.c 3 3
File hfwget.c changed (mode: 100644) (index 792ef0e..54d1546)
... ... static void copy_fw_data(struct fwtable* firmware,
660 660 /* Convert pri_array (in place in image) */ /* Convert pri_array (in place in image) */
661 661 for (i = 0; firmware->pri_plugarray[i].code != 0; i++) for (i = 0; firmware->pri_plugarray[i].code != 0; i++)
662 662 { {
663 firmware->pri_plugarray[i].code = driver_to_host_32(firmware->plugarray[i].code);
664 firmware->pri_plugarray[i].targ_off = driver_to_host_32(firmware->plugarray[i].targ_off);
665 firmware->pri_plugarray[i].length = driver_to_host_32(firmware->plugarray[i].length);
663 firmware->pri_plugarray[i].code = driver_to_host_32(firmware->pri_plugarray[i].code);
664 firmware->pri_plugarray[i].targ_off = driver_to_host_32(firmware->pri_plugarray[i].targ_off);
665 firmware->pri_plugarray[i].length = driver_to_host_32(firmware->pri_plugarray[i].length);
666 666 } }
667 667
668 668 /* Convert identifiers */ /* Convert identifiers */
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/tuxsavvy/agere_fw_utils

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/tuxsavvy/agere_fw_utils

Clone this repository using git:
git clone git://git.rocketgit.com/user/tuxsavvy/agere_fw_utils

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main