how to enable ethtools of imx6solo?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

how to enable ethtools of imx6solo?

2,785 Views
coilnpark
Contributor IV

Hi~

I am developing imx6solo custom board.

I wanna to know how I can enable ethtools to test ethernet now.

Somebody help me?

Best regards,

Colin

Labels (4)
Tags (1)
0 Kudos
3 Replies

1,997 Views
b36401
NXP Employee
NXP Employee

First please note that the utility you mean is named ethtool not ethtools.
You need to add ethtool package with yocto.

https://community.nxp.com/docs/DOC-94967

Have a great day,
Victor

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,997 Views
coilnpark
Contributor IV

Thank you Victor~

I added IMAGE_INSTALL_append = " package" in local.conf and then what should I do?

Could you guide me step b y step?

MACHINE ??= 'imx6solosabresd'
DISTRO ?= 'fsl-imx-x11'
PACKAGE_CLASSES ?= "package_rpm"
EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS = "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
STOPTASKS,/tmp,100M,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K \
ABORT,/tmp,10M,1K"
PACKAGECONFIG_append_pn-qemu-native = " sdl"
PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
CONF_VERSION = "1"

DL_DIR ?= "${BSPDIR}/downloads/"
ACCEPT_FSL_EULA = "1"

IMAGE_INSTALL_append = " package"
~

0 Kudos

1,997 Views
rahulr
Contributor II

You need to change IMAGE_INSTALL_append = " package" to IMAGE_INSTALL_append = " ethtool".