语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -3,9 +3,9 @@
<h2 id="补充说明">补充说明</h2>
<p><strong>depmod命令</strong> 可产生模块依赖的映射文件在构建嵌入式系统时需要由这个命令来生成相应的文件由modprobe使用。</p>
<h3 id="语法">语法</h3>
<pre><code>depmod(选项)</code></pre>
<pre><code class="language-bash">depmod(选项)</code></pre>
<h3 id="选项">选项</h3>
<pre><code>-a或--all分析所有可用的模块
<pre><code class="language-bash">-a或--all分析所有可用的模块
-d或debug执行排错模式
-e输出无法参照的符号
-i不检查符号表的版本
@@ -15,14 +15,14 @@
-V或--version显示版本信息
--help显示帮助。</code></pre>
<h3 id="实例">实例</h3>
<pre><code>depmod -b /home/windsome/EMMA3PF-KernelSource-20080626/install_pos -e -F ./boot/System.map -v 2.6.18_pro500-bcm91250-mips2_fp_be -A -a</code></pre>
<pre><code class="language-bash">depmod -b /home/windsome/EMMA3PF-KernelSource-20080626/install_pos -e -F ./boot/System.map -v 2.6.18_pro500-bcm91250-mips2_fp_be -A -a</code></pre>
<ul>
<li><code>/home/windsome/EMMA3PF-KernelSource-20080626/install_pos</code>是我<code>make mod_install</code>后,所有模块的存放路径。</li>
<li><code>./boot/System.map</code><code>make linux</code>后生成,我拷贝到此目录的。</li>
<li><code>2.6.18_pro500-bcm91250-mips2_fp_be</code>是我build的linux的版本。</li>
</ul>
<p>编译linux过程及执行depmod的例子</p>
<pre><code>genkernel.sh (at linux-2.6.18_pro500)
<pre><code class="language-bash">genkernel.sh (at linux-2.6.18_pro500)
#######
export INSTALL_ROOT_EMMA3PF=&quot;/home/windsome/EMMA3PF-KernelSource-20080626/install_pos&quot;
export INSTALL_MOD_EMMA3PF=&quot;/home/windsome/EMMA3PF-KernelSource-20080626/install_pos&quot;