0%

MPE数据封装格式

dvb ts -> mpe -> ip -> udp

Read more »

某些无线网卡具有监听能力 monitor,使用工具 iwiwconfig 等将模式切换到 monitor 之后,可以使用 tcpdumpwireshark 等抓包工具抓包进行分析,本文记录各个过程中可能使用到的工具

Read more »

udevrules 用于 3G 设备的自动连接,而嵌入式系统中使用精简版的 mdev,没有 rules 来完成 3G 设备的自动连接,本文记录折腾过程

Read more »

Linux 内核中 DMACache 分析,涉及以下函数

  • dma_alloc_coherent
  • dma_map_single
  • dma_alloc_writecombine
  • pgprot_noncached
  • remap_pfn_range
Read more »

内核中有三个常用的伪文件系统: procfsdebugfssysfs

  • procfs — The proc filesystem is a pseudo-filesystem which provides an interface to kernel data structures.
  • sysfs — The filesystem for exporting kernel objects.
  • debugfs — Debugfs exists as a simple way for kernel developers to make information available to user space.
Read more »