文件中查找并删除<feff>

本文详细介绍了字节顺序标记(BOM),这是一种用于标识UTF-8、UTF-16或UTF-32编码的特殊字符。文章还提供了如何在不同环境中处理BOM的方法,包括正则表达式匹配及Python代码示例。
部署运行你感兴趣的模型镜像

字节顺序标记(英语:byte-order mark,BOM)是位于码点U+FEFF的统一码字符的名称。当以UTF-16或UTF-32来将UCS/统一码字符所组成的字符串编码时,这个字符被用来标示其字节序。它常被用来当做标示文件是以UTF-8、UTF-16或UTF-32编码的记号。

有时候会在处理文本中碰到,需要对其处理,处理方法如下:

  • 删除
:g/[\uFEFF]/d
  • 查找
/[\uFEFF]
  • Python
\ufeff

您可能感兴趣的与本文相关的镜像

Python3.10

Python3.10

Conda
Python

Python 是一种高级、解释型、通用的编程语言,以其简洁易读的语法而闻名,适用于广泛的应用,包括Web开发、数据分析、人工智能和自动化脚本

这是我整个csproj文件。里面显示的内容就是缺失{0}{{{<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{1A8E2AB2-6591-498F-9439-CF15A0C3C8E3}</ProjectGuid> <OutputType>Exe</OutputType> <RootNamespace>Vertical</RootNamespace> <AssemblyName>Vertical</AssemblyName> <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <Deterministic>true</Deterministic> <NuGetPackageImportStamp> </NuGetPackageImportStamp> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PlatformTarget>x64</PlatformTarget> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PlatformTarget>AnyCPU</PlatformTarget> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup> <StartupObject /> </PropertyGroup> <ItemGroup> <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> <HintPath>packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> <Reference Include="System" /> <Reference Include="System.ComponentModel.DataAnnotations" /> <Reference Include="System.Core" /> <Reference Include="System.Data.SQLite, Version=1.0.119.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"> <HintPath>packages\System.Data.SQLite.2.0.1\lib\net471\System.Data.SQLite.dll</HintPath> </Reference> <Reference Include="System.Transactions" /> <Reference Include="System.Xml.Linq" /> <Reference Include="System.Data.DataSetExtensions" /> <Reference Include="Microsoft.CSharp" /> <Reference Include="System.Data" /> <Reference Include="System.Deployment" /> <Reference Include="System.Drawing" /> <Reference Include="System.Net.Http" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <Compile Include="Dal\Configurations\ConfigInitializer.cs" /> <Compile Include="Dal\DataContext.cs" /> <Compile Include="Dal\Configurations\FilePathConfig.cs" /> <Compile Include="Dal\Configurations\DatabaseConfig.cs" /> <Compile Include="Dal\Repositories\UserRepository.cs" /> <Compile Include="Dal\Repositories\JsonConfigRepository.cs" /> <Compile Include="Dal\Repositories\SqliteDataRepository.cs" /> <Compile Include="Models\FunctionValueProcessor.cs" /> <Compile Include="Models\ListValueProcessor.cs" /> <Compile Include="Models\MappingValueProcessor.cs" /> <Compile Include="question.cs" /> <Compile Include="Commands\ICommands.cs" /> <Compile Include="Commands\RelayCommand.cs" /> <Compile Include="Dal\Entities\LogEntity.cs" /> <Compile Include="Dal\Entities\UserEntity.cs" /> <Compile Include="Dal\Entities\RowDataEntity.cs" /> <Compile Include="Dal\Interfaces\IUserRepository.cs" /> <Compile Include="Dal\Interfaces\IConfigRepository.cs" /> <Compile Include="Dal\Interfaces\IDataRepository.cs" /> <Compile Include="Dal\Interfaces\IRepository.cs" /> <Compile Include="Dal\Mappers\DataMapper.cs" /> <Compile Include="Infrastructure\DataBinding.cs" /> <Compile Include="Infrastructure\INotifyPropertyChangedBase.cs" /> <Compile Include="Models\CheckBoxControlModel.cs" /> <Compile Include="Models\ApplicationDataModel.cs" /> <Compile Include="Models\AttributeValueConfig.cs" /> <Compile Include="Models\DataGridViewModel.cs" /> <Compile Include="Models\NavigationState.cs" /> <Compile Include="Models\TransformFunction.cs" /> <Compile Include="Models\UserModel.cs" /> <Compile Include="Models\PageModel.cs" /> <Compile Include="Models\NavigationModel.cs" /> <Compile Include="Models\RowItemModel.cs" /> <Compile Include="Models\ComboBoxControlModel.cs" /> <Compile Include="Models\ComboBoxItem.cs" /> <Compile Include="Models\TextBoxControlModel.cs" /> <Compile Include="Models\InputControlBase.cs" /> <Compile Include="Models\IControlData.cs" /> <Compile Include="Models\ValidationRule.cs" /> <Compile Include="Models\FontInfoModel.cs" /> <Compile Include="Models\ControlTypeEnum.cs" /> <Compile Include="Test\ExtendedTest.cs" /> <Compile Include="Test\TestHelpers.cs" /> <Compile Include="Test\TestProgram.cs" /> <Compile Include="Views\BindingManagers\IBindingManager.cs" /> <Compile Include="Views\Form1.cs"> <SubType>Form</SubType> </Compile> <Compile Include="Views\Form1.Designer.cs"> <DependentUpon>Form1.cs</DependentUpon> </Compile> <Compile Include="Models\ModelBase.cs" /> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="ViewModels\MainViewModel.cs" /> <Compile Include="ViewModels\ViewModelBase.cs" /> <EmbeddedResource Include="Views\Form1.resx"> <DependentUpon>Form1.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>Resources.Designer.cs</LastGenOutput> <SubType>Designer</SubType> </EmbeddedResource> <Compile Include="Properties\Resources.Designer.cs"> <AutoGen>True</AutoGen> <DependentUpon>Resources.resx</DependentUpon> </Compile> <None Include="packages.config" /> <None Include="Properties\Settings.settings"> <Generator>SettingsSingleFileGenerator</Generator> <LastGenOutput>Settings.Designer.cs</LastGenOutput> </None> <Compile Include="Properties\Settings.Designer.cs"> <AutoGen>True</AutoGen> <DependentUpon>Settings.settings</DependentUpon> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> </ItemGroup> <ItemGroup> <None Include="App.config" /> </ItemGroup> <ItemGroup /> <ItemGroup> <EmbeddedResource Include="Resources\InitDatabase.sql" /> <None Update="Resources\InitDatabase.sql"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="packages\Stub.System.Data.SQLite.Core.NetFramework.1.0.119.0\build\net46\Stub.System.Data.SQLite.Core.NetFramework.targets" Condition="Exists('packages\Stub.System.Data.SQLite.Core.NetFramework.1.0.119.0\build\net46\Stub.System.Data.SQLite.Core.NetFramework.targets')" /> <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> <PropertyGroup> <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText> </PropertyGroup> <Error Condition="!Exists('packages\Stub.System.Data.SQLite.Core.NetFramework.1.0.119.0\build\net46\Stub.System.Data.SQLite.Core.NetFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Stub.System.Data.SQLite.Core.NetFramework.1.0.119.0\build\net46\Stub.System.Data.SQLite.Core.NetFramework.targets'))" /> </Target> </Project>}}}帮我看看问题出在哪里?
09-10
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>我真得控制控制你了</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Microsoft YaHei", sans-serif; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(135deg, #1a2a6c, #004d99); color: #fff; padding: 20px; } .container { width: 100%; max-width: 500px; text-align: center; background: rgba(10, 20, 40, 0.85); padding: 30px; border-radius: 10px; box-shadow: 0 0 20px rgba(0, 150, 255, 0.4); border: 1px solid rgba(0, 243, 255, 0.5); } h1 { font-size: 28px; margin-bottom: 25px; color: #00f3ff; text-shadow: 0 0 10px rgba(0, 243, 255, 0.7); } p { font-size: 16px; line-height: 1.6; margin: 15px 0; color: #a0d0ff; } .button-wrapper { position: relative; margin: 30px auto; width: fit-content; } #accessButton { padding: 12px 40px; font-size: 18px; font-weight: bold; background: linear-gradient(to right, #0062cc, #0099cc); color: white; border: none; border-radius: 5px; cursor: not-allowed; position: relative; opacity: 0.8; transition: all 0.3s; } #shieldOverlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient( 45deg, rgba(255, 80, 80, 0.4), rgba(255, 80, 80, 0.4) 10px, rgba(255, 120, 120, 0.4) 10px, rgba(255, 120, 120, 0.4) 20px ); pointer-events: all; border-radius: 5px; cursor: not-allowed; } .challenge-info { display: flex; justify-content: space-around; margin: 20px 0; padding: 10px; background: rgba(0, 50, 100, 0.4); border-radius: 5px; } .info-item { text-align: center; } .info-label { color: #55ccff; font-size: 14px; } .info-value { font-weight: bold; color: #ffcc55; } /* 添加按钮激活状态样式 */ #accessButton.active { opacity: 1; box-shadow: 0 0 15px rgba(0, 200, 255, 0.6); cursor: pointer; } /* 开发者工具检测警告 */ #devToolsWarning { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); display: none; justify-content: center; align-items: center; z-index: 9999; color: #ff5555; font-size: 24px; text-align: center; padding: 20px; } .hint { margin-top: 20px; padding: 10px; background: rgba(0, 50, 100, 0.4); border-radius: 5px; font-size: 14px; color: #ffcc55; } .console-hint { font-family: monospace; background: rgba(0, 0, 0, 0.5); padding: 5px; border-radius: 3px; margin-top: 5px; display: inline-block; } </style> </head> <body> <div class="container"> <h1>我真得控制控制你了</h1> <p>建议购买—破魔刀</p> <p>老套路了</p> <div class="challenge-info"> <div class="info-item"> <div class="info-label">挑战</div> <div class="info-value">JavaScript</div> </div> <div class="info-item"> <div class="info-label">难度</div> <div class="info-value">☆☆☆☆☆</div> </div> </div> <form id="nextLevelForm" method="POST" action="next-level.php"> <input type="hidden" name="access" value="1"> <input type="hidden" name="csrf_token" value="a75a7a83cbcb32b5b66fa8ca6cf38fe47f82ed96ac919d37d77e1b4b79bb789b"> </form> <div class="button-wrapper"> <button id="accessButton" type="button"> 启动! <div id="shieldOverlay"></div> </button> </div> <div class="hint"> 是名刀司命! </div> </div> <div id="devToolsWarning"> <div> <h2>开发者工具已禁用</h2> <p>按 ESC 键关闭此提示</p> </div> </div> <script> // 检查保护层状态 function checkShieldStatus() { const shield = document.getElementById('shieldOverlay'); const button = document.getElementById('accessButton'); if (!shield) { button.classList.add('active'); button.disabled = false; } else { button.classList.remove('active'); button.disabled = true; } } checkShieldStatus(); setInterval(checkShieldStatus, 500); document.getElementById('accessButton').addEventListener('click', function() { if (!document.getElementById('shieldOverlay')) { document.getElementById('nextLevelForm').submit(); } }); document.addEventListener('contextmenu', function(e) { e.preventDefault(); }); (function() { document.addEventListener('keydown', function(e) { // F12 if (e.keyCode === 123) { e.preventDefault(); showDevToolsWarning(); } // Ctrl+Shift+I (Windows/Linux) if (e.ctrlKey && e.shiftKey && e.keyCode === 73) { e.preventDefault(); showDevToolsWarning(); } // Ctrl+Shift+J (Windows/Linux) if (e.ctrlKey && e.shiftKey && e.keyCode === 74) { e.preventDefault(); showDevToolsWarning(); } // Cmd+Option+I (Mac) if (e.metaKey && e.altKey && e.keyCode === 73) { e.preventDefault(); showDevToolsWarning(); } // Cmd+Option+J (Mac) if (e.metaKey && e.altKey && e.keyCode === 74) { e.preventDefault(); showDevToolsWarning(); } // Ctrl+U (查看源代码) if (e.ctrlKey && e.keyCode === 85) { e.preventDefault(); showDevToolsWarning(); } }); let devtools = false; const threshold = 160; function checkDevTools() { const widthThreshold = window.outerWidth - window.innerWidth > threshold; const heightThreshold = window.outerHeight - window.innerHeight > threshold; const orientation = widthThreshold ? 'vertical' : 'horizontal'; if (!(heightThreshold && widthThreshold) && ((window.Firebug && window.Firebug.chrome && window.Firebug.chrome.isInitialized) || widthThreshold || heightThreshold)) { devtools = true; showDevToolsWarning(); } else { devtools = false; } } setInterval(checkDevTools, 1000); function showDevToolsWarning() { const warning = document.getElementById('devToolsWarning'); warning.style.display = 'flex'; document.addEventListener('keydown', function closeWarning(e) { if (e.key === 'Escape') { warning.style.display = 'none'; document.removeEventListener('keydown', closeWarning); } }); } if (typeof console !== "undefined") { if (typeof console.log !== 'undefined') { console.log = function() {}; } if (typeof console.warn !== 'undefined') { console.warn = function() {}; } if (typeof console.error !== 'undefined') { console.error = function() {}; } if (typeof console.info !== 'undefined') { console.info = function() {}; } } })(); </script> </body> </html> 这是该网页的源代码,分析该如何获得flag
10-08
Modules linked in: eth_ephy(PO+) eth(PO) qdma_lan(PO) ifc(PO) fe_core(PO) sif(PO) tccicmd(PO) tcledctrl(PO) module_sel(PO) tp_sniffer(O) lbd(O) tp_mdns_repeater(O) mesh(O) rate_limit(PO) bootconfig(O) dhcp_capture(O) tp_domain(O) vlan_manage(O) multiPort(O) portal(O) tls_tuple_lib(O) utility_core(O) ts_kmp ebt_vlan ebtables ebt_ip ipt_REJECT xt_REDIRECT ipt_MASQUERADE iptable_nat iptable_filter ip_tables nf_reject_ipv4 nf_nat_redirect nf_nat_masquerade_ipv4 nf_nat_ipv4 nf_nat_proto_gre nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_state xt_conntrack nf_conntrack_h323 nf_conntrack xt_string nm_flash(O) CPU: 0 PID: 469 Comm: httpd_portal Tainted: P O 4.4.115 #144 Hardware name: ECONET (Device Tree) task: cd7649c0 ti: cba00000 task.ti: cba00000 PC is at cpu_timer_callback+0x244/0x2b8 [fe_core] LR is at cpu_timer_callback+0x230/0x2b8 [fe_core] pc : [<bed7ca50>] lr : [<bed7ca3c>] psr: 60040113 sp : cba03e80 ip : 00000000 fp : 00000000 r10: 000026ac r9 : 00000000 r8 : 00002520 r7 : 00000000 r6 : 0000011a r5 : bed9d840 r4 : bed9d6c0 r3 : 00000000 r2 : c0afd134 r1 : bed969e0 r0 : bed969f4 Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none Control: 10c5383d Table: 8baf406a DAC: 00000051 Process httpd_portal (pid: 469, stack limit = 0xcba00190) Stack: (0xcba03e80 to 0xcba04000) 3e80: 00000005 00000000 00000000 00000000 00000000 00000000 00000070 00000000 3ea0: 00000000 00000000 00000108 00000000 000002ef 00000000 00000000 00000000 3ec0: 00000063 00000000 02596965 cdfd9380 00000100 bed7c80c c0af4100 c0aea380 3ee0: 0d4ef000 cdfd97a0 40000001 c00ff244 00000002 00000000 cdfd9380 00000000 3f00: 00000200 c00ff3f4 a2b99188 bed9dbd4 00000000 00000001 c0af4084 cba00000 3f20: c0af4080 00000100 c0af4080 c00b20d4 00000000 cd764c68 cba03f30 c0dc4740 3f40: 0000000a ffff8f3d c0af4100 00400000 00000549 c0aeb32c 00000000 00000000 3f60: 00000001 c0081880 00000549 b69abdda 0047e59e c00b244c c0aeb32c c00f17fc 3f80: 0000001b c0b04b14 c0af4e40 cba03fb0 c0dbf786 c00894ec b69a1808 80040010 3fa0: ffffffff 10c5383d 10c5387d c008f0b0 80000000 00000000 0000001f ffffffff 3fc0: c0665c4d 000009ba 00000004 0000001f 40000000 00000549 b69abdda 0047e59e 3fe0: 00000001 bebee9f8 b69a17e8 b69a1808 80040010 ffffffff 8ffff841 8ffffc41 [<bed7ca50>] (cpu_timer_callback [fe_core]) from [<c00ff244>] (call_timer_fn+0x24/0x98) [<c00ff244>] (call_timer_fn) from [<c00ff3f4>] (run_timer_softirq+0x13c/0x208) [<c00ff3f4>] (run_timer_softirq) from [<c00b20d4>] (__do_softirq+0xfc/0x214) [<c00b20d4>] (__do_softirq) from [<c00b244c>] (irq_exit+0x78/0xb0) [<c00b244c>] (irq_exit) from [<c00f17fc>] (__handle_domain_irq+0x60/0xb4) [<c00f17fc>] (__handle_domain_irq) from [<c00894ec>] (gic_handle_irq+0xac/0x130) [<c00894ec>] (gic_handle_irq) from [<c008f0b0>] (__irq_usr+0x50/0x80) Exception stack(0xcba03fb0 to 0xcba03ff8) 3fa0: 80000000 00000000 0000001f ffffffff 3fc0: c0665c4d 000009ba 00000004 0000001f 40000000 00000549 b69abdda 0047e59e 3fe0: 00000001 bebee9f8 b69a17e8 b69a1808 80040010 ffffffff Code: e34c30af e30609f4 e5933000 e34b0ed9 (e5931000) ---[ end trace c100b1335d46366d ]--- Kernel panic - not syncing: Fatal exception in interrupt Fatal exception in interrupt CPU: 0 PID: 469 Comm: httpd_portal Tainted: P D O 4.4.115 #144 Hardware name: ECONET (Device Tree) task: cd7649c0 ti: cba00000 task.ti: cba00000 PC is at 0xb69a1808 LR is at 0xb69a17e8 pc : [<b69a1808>] lr : [<b69a17e8>] psr: 80040010 sp : bebee9f8 ip : 00000001 fp : 0047e59e r10: b69abdda r9 : 00000549 r8 : 40000000 r7 : 0000001f r6 : 00000004 r5 : 000009ba r4 : c0665c4d r3 : ffffffff r2 : 0000001f r1 : 00000000 r0 : 80000000 Flags: Nzcv IRQs on FIQs on Mode USER_32 ISA ARM Segment user Control: 10c5383d Table: 8baf406a DAC: 00000055 CPU: 0 PID: 469 Comm: httpd_portal Tainted: P D O 4.4.115 #144 Hardware name: ECONET (Device Tree) [<c0092c14>] (unwind_backtrace) from [<c008e3f0>] (show_stack+0x10/0x14) [<c008e3f0>] (show_stack) from [<c02a1384>] (dump_stack+0x94/0xa8) [<c02a1384>] (dump_stack) from [<c07478c8>] (panic_write2+0x54/0x60) [<c07478c8>] (panic_write2) from [<c0133198>] (panic+0x84/0x210) [<c0133198>] (panic) from [<c008e71c>] (arm_notify_die+0x0/0x54) [<c008e71c>] (arm_notify_die) from [<cba00190>] (0xcba00190) CPU: 0 PID: 469 Comm: httpd_portal Tainted: P D O 4.4.115 #144 Hardware name: ECONET (Device Tree) [<c0092c14>] (unwind_backtrace) from [<c008e3f0>] (show_stack+0x10/0x14) [<c008e3f0>] (show_stack) from [<c02a1384>] (dump_stack+0x94/0xa8) [<c02a1384>] (dump_stack) from [<c07478cc>] (panic_write2+0x58/0x60) [<c07478cc>] (panic_write2) from [<c0133198>] (panic+0x84/0x210) [<c0133198>] (panic) from [<c008e71c>] (arm_notify_die+0x0/0x54) [<c008e71c>] (arm_notify_die) from [<cba00190>] (0xcba00190) failed open file CPU1: stopping CPU: 1 PID: 698 Comm: insmod Tainted: P D O 4.4.115 #144 Hardware name: ECONET (Device Tree) [<c0092c14>] (unwind_backtrace) from [<c008e3f0>] (show_stack+0x10/0x14) [<c008e3f0>] (show_stack) from [<c02a1384>] (dump_stack+0x94/0xa8) [<c02a1384>] (dump_stack) from [<c00910c8>] (handle_IPI+0x188/0x1a4) [<c00910c8>] (handle_IPI) from [<c00894b4>] (gic_handle_irq+0x74/0x130) [<c00894b4>] (gic_handle_irq) from [<c008edb4>] (__irq_svc+0x54/0x70) Exception stack(0xca8c7c20 to 0xca8c7c68) 7c20: 0000000a c0dc6768 c0de0c98 600c0013 00000000 c0dc9740 00000001 0000004d 7c40: 000001a2 00000000 00000000 000001a1 00000006 ca8c7c70 c02f8c04 c00f020c 7c60: 600c0013 ffffffff [<c008edb4>] (__irq_svc) from [<c00f020c>] (console_unlock+0x374/0x594) [<c00f020c>] (console_unlock) from [<c00f06f8>] (vprintk_emit+0x2cc/0x55c) [<c00f06f8>] (vprintk_emit) from [<c00f0ae4>] (vprintk_default+0x24/0x2c) [<c00f0ae4>] (vprintk_default) from [<c01333cc>] (printk+0x34/0x58) [<c01333cc>] (printk) from [<bee642a8>] (doGePhyALLAnalogCal_R45+0xdbc/0x1444 [eth_ephy]) [<bee642a8>] (doGePhyALLAnalogCal_R45 [eth_ephy]) from [<bee64a00>] (tcPhyInit+0xd0/0x240 [eth_ephy]) [<bee64a00>] (tcPhyInit [eth_ephy]) from [<c0089814>] (do_one_initcall+0x90/0x1d8) [<c0089814>] (do_one_initcall) from [<c01334f0>] (do_init_module+0x60/0x370) [<c01334f0>] (do_init_module) from [<c0114ae4>] (load_module+0x1778/0x1e68) [<c0114ae4>] (load_module) from [<c01152b8>] (SyS_init_module+0xe4/0x14c) [<c01152b8>] (SyS_init_module) from [<c008a660>] (ret_fast_syscall+0x0/0x48) Rebooting in 5 seconds..
最新发布
10-29
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值