initramfs is not the proper name for this, as it stores a boot ramdisk and not a filesystem. Update the name to reflect it's usage correctly. If CMDLINE_OVERRIDE is enabled, the chosen bootargs aren't used at all. Drop them from the device tree source file to not cause confusion. Remove the noinitrd bootarg. Due to the empty ramdisk this parameter isn't required any longer: [ 0.000000] Initrd not found or empty - disabling initrd Use the LEDE mtd-mac-address* device tree properties to set the interfaces MAC-Addresses. Signed-off-by: Chris Blake <chrisrblake93@gmail.com> Signed-off-by: Mathias Kresin <dev@kresin.me>master
parent
79992d197f
commit
93bfac468e
@ -1,17 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
. /lib/functions.sh |
||||
. /lib/functions/system.sh |
||||
|
||||
preinit_set_mac_address() { |
||||
case $(board_name) in |
||||
hiveap-330) |
||||
mac_wan=$(mtd_get_mac_binary hw-info 0) |
||||
[ -n "$mac_wan" ] && ifconfig eth0 hw ether "$mac_wan" |
||||
mac_lan=$(macaddr_add $(mtd_get_mac_binary hw-info 0) +1) |
||||
[ -n "$mac_lan" ] && ifconfig eth1 hw ether "$mac_lan" |
||||
;; |
||||
esac |
||||
} |
||||
|
||||
boot_hook_add preinit_main preinit_set_mac_address |
Loading…
Reference in new issue