diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-12-27 12:13:47 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-28 11:59:30 +0100 |
commit | 31379277f739b00a4d2da631e16a2ebbb478ea89 (patch) | |
tree | aa65f88d03b2162af7943ee2da0ec63f6a96a159 | |
parent | 4524d74153343982cbbe771d042c152c65060d7a (diff) | |
download | buildroot-31379277f739b00a4d2da631e16a2ebbb478ea89.tar.gz buildroot-31379277f739b00a4d2da631e16a2ebbb478ea89.zip |
package/lm-sensors: make ISA tools depend on x86
The isadump and isaset tools are built for x86 targets only.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/lm-sensors/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/lm-sensors/Config.in b/package/lm-sensors/Config.in index 60571b784f..a2e0275999 100644 --- a/package/lm-sensors/Config.in +++ b/package/lm-sensors/Config.in @@ -25,12 +25,14 @@ config BR2_PACKAGE_LM_SENSORS_FANCONTROL config BR2_PACKAGE_LM_SENSORS_ISADUMP bool "isadump" + depends on BR2_i386 || BR2_x86_64 help Isadump is a small helper program to examine registers visible through the ISA bus. config BR2_PACKAGE_LM_SENSORS_ISASET bool "isaset" + depends on BR2_i386 || BR2_x86_64 help Isaset is a small helper program to set register visible through the ISA bus. |