diff options
author | John Crispin <blogic@openwrt.org> | 2015-10-20 19:03:26 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-10-20 19:03:26 +0000 |
commit | e4f939449929b207fb44c5b6b7e3c99ca38c3660 (patch) | |
tree | daff4f26fee9dd631cada9ff203ce20c780e1287 /target/linux/ar71xx/generic/profiles | |
parent | b310e00f1c09dfa7576063bcc4d1f1b7f70f5aea (diff) | |
download | upstream-e4f939449929b207fb44c5b6b7e3c99ca38c3660.tar.gz upstream-e4f939449929b207fb44c5b6b7e3c99ca38c3660.tar.bz2 upstream-e4f939449929b207fb44c5b6b7e3c99ca38c3660.zip |
ar71xx: Bitmain Antminer S1 & S3 cleanup
Sets the LEDs to boardname:color:led-name
Sets the LAN to eth0
Corrects the profile names in the Makefile and changes tabs to spaces
in the Makefile 'define Device/' like the other devices.
Other corrections such as the Machine Name and HWIDs
Signed-off-by: L. D. Pinney <ldpinney@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@47242 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/generic/profiles')
-rw-r--r-- | target/linux/ar71xx/generic/profiles/antminer.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/target/linux/ar71xx/generic/profiles/antminer.mk b/target/linux/ar71xx/generic/profiles/antminer.mk index 404133b8ca..d59a089d22 100644 --- a/target/linux/ar71xx/generic/profiles/antminer.mk +++ b/target/linux/ar71xx/generic/profiles/antminer.mk @@ -5,24 +5,24 @@ # See /LICENSE for more information. # -define Profile/ANTMINER_S1 - NAME:=Antminer S1 +define Profile/ANTMINERS1 + NAME:=Antminer-S1 PACKAGES:=kmod-usb-core kmod-usb2 kmod-crypto-manager kmod-i2c-gpio-custom kmod-usb-hid endef -define Profile/ANTMINER_S1/Description +define Profile/ANTMINERS1/Description Package set optimized for the Bitmain Antminer S1. endef -$(eval $(call Profile,ANTMINER_S1)) +$(eval $(call Profile,ANTMINERS1)) -define Profile/ANTMINER_S3 - NAME:=Antminer S3 +define Profile/ANTMINERS3 + NAME:=Antminer-S3 PACKAGES:=kmod-usb-core kmod-usb2 kmod-crypto-manager kmod-i2c-gpio-custom kmod-usb-hid endef -define Profile/ANTMINER_S1/Description +define Profile/ANTMINERS3/Description Package set optimized for the Bitmain Antminer S3. endef -$(eval $(call Profile,ANTMINER_S3)) +$(eval $(call Profile,ANTMINERS3)) |