| /OK3568_Linux_fs/u-boot/drivers/net/ |
| H A D | dnet.c | 38 u16 dnet_readw_mac(struct dnet_device *dnet, u16 reg) in dnet_readw_mac() argument 43 writel(reg, &dnet->regs->MACREG_ADDR); in dnet_readw_mac() 50 data_read = readl(&dnet->regs->MACREG_DATA); in dnet_readw_mac() 57 void dnet_writew_mac(struct dnet_device *dnet, u16 reg, u16 val) in dnet_writew_mac() argument 60 writel(val, &dnet->regs->MACREG_DATA); in dnet_writew_mac() 63 writel(reg | DNET_INTERNAL_WRITE, &dnet->regs->MACREG_ADDR); in dnet_writew_mac() 70 static void dnet_mdio_write(struct dnet_device *dnet, u8 reg, u16 value) in dnet_mdio_write() argument 75 dnet->phy_addr, reg, value); in dnet_mdio_write() 77 while (!(dnet_readw_mac(dnet, DNET_INTERNAL_GMII_MNG_CTL_REG) & in dnet_mdio_write() 88 tmp |= (dnet->phy_addr << 8); in dnet_mdio_write() [all …]
|
| H A D | Makefile | 20 obj-$(CONFIG_DNET) += dnet.o
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/ |
| H A D | 0001-configure.ac-don-t-use-dnet-config.patch | 4 Subject: [PATCH] configure.ac: don't use dnet-config 6 The dnet-config tool doesn't know about cross-compilation, so it injects 7 -I/usr/include into the path, causing compiler errors. So instead find dnet via 20 AC_VMW_CHECK_LIB([dnet], 23 - [dnet-config], 26 [dnet.h], 32 - [dnet-config was not found on your PATH. Please configure without dnet or install dnet - http… 33 + [dnet was not found. Please configure without dnet (using --without-dnet) or install dnet - h…
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/ |
| H A D | dnet.c | 27 static u16 dnet_readw_mac(struct dnet *bp, u16 reg) in dnet_readw_mac() 46 static void dnet_writew_mac(struct dnet *bp, u16 reg, u16 val) in dnet_writew_mac() 59 static void __dnet_set_hwaddr(struct dnet *bp) in __dnet_set_hwaddr() 71 static void dnet_get_hwaddr(struct dnet *bp) in dnet_get_hwaddr() 101 struct dnet *bp = bus->priv; in dnet_mdio_read() 134 struct dnet *bp = bus->priv; in dnet_mdio_write() 172 struct dnet *bp = netdev_priv(dev); in dnet_handle_link_change() 253 struct dnet *bp = netdev_priv(dev); in dnet_mii_probe() 297 static int dnet_mii_init(struct dnet *bp) in dnet_mii_init() 339 static void dnet_update_stats(struct dnet *bp) in dnet_update_stats() [all …]
|
| H A D | dnet.h | 204 struct dnet { struct
|
| H A D | Makefile | 34 obj-$(CONFIG_DNET) += dnet.o
|
| H A D | Kconfig | 70 will be called dnet.
|
| /OK3568_Linux_fs/buildroot/package/tcpreplay/ |
| H A D | 0001-configure-ac-fix-without-libdnet.patch | 57 - if test -x ${testdir}/bin/dnet-config -a $founddnet = no ; then 58 - LDNETINC="$($testdir/bin/dnet-config --cflags)" 59 - LDNETLIB="$($testdir/bin/dnet-config --libs)" 60 - libdnet_version="$($testdir/bin/dnet-config --version)" 66 + if test -x ${testdir}/bin/dnet-config -a $founddnet = no ; then 67 + LDNETINC="$($testdir/bin/dnet-config --cflags)" 68 + LDNETLIB="$($testdir/bin/dnet-config --libs)" 69 + libdnet_version="$($testdir/bin/dnet-config --version)"
|
| /OK3568_Linux_fs/buildroot/package/libdnet/ |
| H A D | 0001-python-gcc.patch | 1 --- a/python/dnet.c 2006-01-19 18:08:23.000000000 +1100 2 +++ b/python/dnet.c 2008-09-03 16:30:47.000000000 +1000 10 /* "/Users/dugsong/projects/libdnet/python/./dnet.pyx":634 */ 20 /* "/Users/dugsong/projects/libdnet/python/./dnet.pyx":636 */
|
| H A D | Config.in | 15 dnet module for python 17 comment "dnet module for python requires python package"
|
| H A D | 0002-python-makefile.patch | 10 pyrexc $(srcdir)/dnet.pyx 12 python-build: $(srcdir)/dnet.c
|
| H A D | libdnet.mk | 16 LIBDNET_CONFIG_SCRIPTS = dnet-config 34 $(RM) -f $(TARGET_DIR)/usr/bin/dnet-config
|
| /OK3568_Linux_fs/buildroot/package/daq/ |
| H A D | daq.mk | 24 --with-dnet-includes=$(STAGING_DIR)/usr/include \ 25 --with-dnet-libraries=$(STAGING_DIR)/usr/lib
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/libdnet/ |
| H A D | libdnet_1.14.bb | 20 MULTILIB_SCRIPTS = "${PN}:${bindir}/dnet-config"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/snort/ |
| H A D | snort_2.9.19.bb | 34 --with-dnet-includes=${STAGING_INCDIR} \ 35 --with-dnet-libraries=${STAGING_LIBDIR} \
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/daq/ |
| H A D | daq_2.0.7.bb | 23 --with-libpcap-includes=${STAGING_INCDIR} --with-dnet-includes=${STAGING_LIBDIR}"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/open-vm-tools/ |
| H A D | open-vm-tools_11.3.5.bb | 32 file://0001-configure.ac-don-t-use-dnet-config.patch;patchdir=.. \ 111 export CUSTOM_DNET_NAME=dnet
|
| /OK3568_Linux_fs/buildroot/package/openvmtools/ |
| H A D | openvmtools.mk | 16 OPENVMTOOLS_CONF_OPTS = --with-dnet \
|
| /OK3568_Linux_fs/kernel/net/openvswitch/ |
| H A D | datapath.c | 2508 static void __net_exit list_vports_from_net(struct net *net, struct net *dnet, in list_vports_from_net() argument 2524 if (dev_net(vport->dev) == dnet) in list_vports_from_net() 2531 static void __net_exit ovs_exit_net(struct net *dnet) in ovs_exit_net() argument 2534 struct ovs_net *ovs_net = net_generic(dnet, ovs_net_id); in ovs_exit_net() 2541 ovs_ct_exit(dnet); in ovs_exit_net() 2548 list_vports_from_net(net, dnet, &head); in ovs_exit_net()
|
| /OK3568_Linux_fs/yocto/meta-browser/meta-firefox/recipes-browser/firefox/firefox/fixes/ |
| H A D | pre-generated-old-configure.patch | 2922 + # the Alpha needs dnet_stub (dnet does not exist). 2925 +ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'`
|
| /OK3568_Linux_fs/buildroot/dl/ncurses/ |
| HD | ncurses-6.1-20190831.patch.gz | 1# ncurses 6.1 - patch 20190831 - Thomas E. Dickey
2#
3# --- ... |
| HD | ncurses-6.1-20200111.patch.gz | 1# ncurses 6.1 - patch 20200111 - Thomas E. Dickey
2#
3# --- ... |
| HD | ncurses-6.1-20200104.patch.gz | 1# ncurses 6.1 - patch 20200104 - Thomas E. Dickey
2#
3# --- ... |
| HD | ncurses-6.1-20190907.patch.gz | 1# ncurses 6.1 - patch 20190907 - Thomas E. Dickey
2#
3# --- ... |