diff options
author | Lee Duncan <lduncan@suse.com> | 2022-04-01 10:15:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 10:15:01 -0700 |
commit | 465d051402ce0d0a2998f5c204b8bb10e5541b05 (patch) | |
tree | dd1b6a61e16cca30ffc540b4c8d2847df613cdd3 /usr/fwparam_ibft/README | |
parent | 4cc94655720a5c1fe3baf1cb903ed35880d505fe (diff) | |
parent | d35fd49d536c47090d6e14b66f002a6c37297d07 (diff) | |
download | open-iscsi-465d051402ce0d0a2998f5c204b8bb10e5541b05.tar.gz |
Merge pull request #328 from gonzoleeman/more-makefile-cleanup
More makefile cleanup
Diffstat (limited to 'usr/fwparam_ibft/README')
-rw-r--r-- | usr/fwparam_ibft/README | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/usr/fwparam_ibft/README b/usr/fwparam_ibft/README new file mode 100644 index 0000000..f040493 --- /dev/null +++ b/usr/fwparam_ibft/README @@ -0,0 +1,23 @@ +The files in this directory are used by +iscsi programs in "usr" to access and parse +the iBFT data. + +This code uses bison/lex to parse the data, +but at some point it was decided to check in +the output files from bison and flex, so that +the average source-code user would not have +to run those tools to compile the code. + +Now it is likely that most folks can get those +tools, but the system of having static +parsing and lexical analysis has worked for +so long (and isn't broken), it would be a +shame to change and break it. So the static +files remain, for now. + +Note: if you wish to use these object files, +they have two external requirements: they +need the compatability routines in sysdeps.o, +and they need the file iscsi_net_util.o. + +Lee Duncan Mar, 2022 |