知識社群
登入
中文(台灣)
English(US)
Q&A
線上人數:
373
回首頁
最新活動
(34)
公佈欄
最新公告
近期課程
技術專欄
Android
嵌入式Linux
韌體設計
FPGA / Verilog
站上資源
線上教學
文件總覽
廠商徵才
專業論壇
(1315)
推廣成果
學員專題
Android I/O Workshop
Android 企業產訓專班
活動花絮
(58)
專班學員資訊平台
102年嵌入式軟韌體設計工程師養成班
102年JAVA程式設計班
102Linux網路工程師-LPI認證養成班
嵌入式Linux就業班第二梯次
嵌入式Linux就業班第三梯次
101年 Android設計班(2)
101年 Android設計班(1)
公告
艾鍗學院成立滿十週年了!十年一遇的超值回饋,獻給堅持學習的你~
(03-12)
【2019下半年課程行事曆】政府+企業雙重補助,AI人才養成計劃開跑
(07-10)
IT TRAINING 2019上半年最新技術培訓一覽
(03-13)
[
more
]
最新消息
文件分類
[
總覽
]
廠商徵才資訊
(215)
學員專題成果
(31)
研討會活動專區
(5)
Android 專欄
(19)
活動簡報檔
(2)
線上教學 Training Video
(24)
韌體設計相關
(17)
Embedded LInux 專欄
(54)
Raspberry Pi
(4)
FPGA/Verilog 專欄
(14)
小品文章
(37)
未分類文件
(28)
101年 Android 應用軟體設計班
(4)
基礎C程式&資料結構
(8)
嵌入式Linux就業班第二梯次
(20)
101年臺北市政府勞工局職業訓練中心-Android APP 軟體開發人才培訓就業班
(16)
102年Linux網路工程師-LPI認證養成班
(9)
102年JAVA程式設計班
(2)
102年嵌入式軟韌體設計工程師養成班
(6)
Access VBA
(5)
Excel VBA
(4)
產業訊息
(2)
PCB Layout
(7)
電子電路
(6)
專班文件區
嵌入式Linux就業班第三梯次
(13)
社群資訊
訪客: 3180086
文章: 557
討論: 1315
公告: 31
容量: 剩餘
2.4 GB
(4 GB)
閱讀權限: 開放
分類:
教育學習 / 軟體系統
版主: 艾鍗學院
副版主: 無
位置:
艾鍗學院 Blog
>
專業論壇
>
討論
genext2f 執行發生錯誤? why?
(PeterChang, 2011-06-23 19:02)
1樓
請問這個是什麼狀況? 怎麼解決
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/
genext2fs: ignoring entry
linc-d74-0-743cafba43c6
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d4b-0-3323d793a5ddb
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d79-0-63d410bbc907
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d7b-0-780ed4b9d07d4
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d9b-0-5fd4c7d62c0d4
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-da1-0-6e2655e74f98b
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-da3-0-6e2655e754d0f
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-da7-0-6e2655e7631cc
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-dad-0-6e2655e797df8
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-db0-0-6e2655e7d62cc
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-db2-0-6e2655e6f06
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-db4-0-4d86647e9c369
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-1135-0-3acbbec2ae804
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-3b54-0-1db0f6dd527dd
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-3d7d-0-3188b0ef4d3f6
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry mapping-root
(joseph, 2011-06-29 11:24)
2樓
你的root fs目錄裡面,存在一些檔案類型.使genext2fs無法識別,
所以忽略該檔案...
switch(st.st_mode & S_IFMT)
{
case S_IFCHR:
mknod_fs(fs, this_nod, name, mode|FM_IFCHR, uid, gid, st.st_rdev >> 8, st.st_rdev & 0xff, ctime, mtime);
break;
case S_IFBLK:
mknod_fs(fs, this_nod, name, mode|FM_IFBLK, uid, gid, st.st_rdev >> 8, st.st_rdev & 0xff, ctime, mtime);
break;
case S_IFIFO:
mknod_fs(fs, this_nod, name, mode|FM_IFIFO, uid, gid, 0, 0, ctime, mtime);
break;
case S_IFLNK:
b = xreadlink(dent->d_name);
mklink_fs(fs, this_nod, name, st.st_size, b, uid, gid, ctime, mtime);
free(b);
break;
case S_IFREG:
fh = xfopen(dent->d_name, "r");
mkfile_fs(fs, this_nod, name, mode, st.st_size, fh, uid, gid, ctime, mtime);
fclose(fh);
break;
case S_IFDIR:
nod = mkdir_fs(fs, this_nod, name, mode, uid, gid, ctime, mtime);
if(chdir(dent->d_name) < 0)
perror_msg_and_die(name);
add2fs_from_dir(fs, nod, squash_uids, squash_perms, stats);
chdir("..");
break;
default:
error_msg("ignoring entry %s", name);
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d4b-0-3323d793a5ddb
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d79-0-63d410bbc907
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d7b-0-780ed4b9d07d4
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-d9b-0-5fd4c7d62c0d4
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-da1-0-6e2655e74f98b
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-da3-0-6e2655e754d0f
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-da7-0-6e2655e7631cc
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-dad-0-6e2655e797df8
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-db0-0-6e2655e7d62cc
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-db2-0-6e2655e6f06
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-db4-0-4d86647e9c369
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-1135-0-3acbbec2ae804
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-3b54-0-1db0f6dd527dd
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry linc-3d7d-0-3188b0ef4d3f6
..buildroot/tar/buildroot/build_i386/genext2fs-1.3/genext2fs: ignoring entry mapping-root
{
case S_IFCHR:
mknod_fs(fs, this_nod, name, mode|FM_IFCHR, uid, gid, st.st_rdev >> 8, st.st_rdev & 0xff, ctime, mtime);
break;
case S_IFBLK:
mknod_fs(fs, this_nod, name, mode|FM_IFBLK, uid, gid, st.st_rdev >> 8, st.st_rdev & 0xff, ctime, mtime);
break;
case S_IFIFO:
mknod_fs(fs, this_nod, name, mode|FM_IFIFO, uid, gid, 0, 0, ctime, mtime);
break;
case S_IFLNK:
b = xreadlink(dent->d_name);
mklink_fs(fs, this_nod, name, st.st_size, b, uid, gid, ctime, mtime);
free(b);
break;
case S_IFREG:
fh = xfopen(dent->d_name, "r");
mkfile_fs(fs, this_nod, name, mode, st.st_size, fh, uid, gid, ctime, mtime);
fclose(fh);
break;
case S_IFDIR:
nod = mkdir_fs(fs, this_nod, name, mode, uid, gid, ctime, mtime);
if(chdir(dent->d_name) < 0)
perror_msg_and_die(name);
add2fs_from_dir(fs, nod, squash_uids, squash_perms, stats);
chdir("..");
break;
default:
error_msg("ignoring entry %s", name);