USE AT YOUR OWN RISK, MAKE BACKUPS
Run the following from the command line:
echo "HWaddr_eth0=ifconfig eth0 | grep HWaddr | cut -d" " -f11" >> /home/e-smith/configuration
Add the following lines into /sbin/e-smith/console at line number 3031:
$settings .= sprintf BODY_FORMAT, "HWaddr eth0",
$conf{'HWaddr_eth0'};
This will add a line that on my box does this:
Ethernet settings
Ethernet driver 1 : 8139too
Ethernet driver 2 : 8139too
HWaddr eth0 : 00:00:1C:D0:02:CD
To add for another network card just change all eth0 to eth1 in the above text.
What this does is to add a line to the configuration file the holds the MAC address, and then read back when you use the review panel.
Please be aware that this is a hack, the MAC address isn't updated, you'll need to do that yourself by deleting the line from the config file and rerunning the first command.