BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0004904 [buildroot] Architecture Specific major always 09-11-08 05:41 09-11-08 05:41
Reporter maleadt View Status public  
Assigned To buildroot
Priority normal Resolution open  
Status assigned   Product Version
Summary 0004904: fsck.cramfs: asm/page.h is missing
Description When compiling fsck in buildroot, the compilation fails due to a missing "asm/page.h". This file effectively is not present on my system. It seems that "asm/page.h" is included in order to define PAGE_SIZE.

When replacing this include statement with the following routine extracted from mkswap.c (which serves the same purpose, defining PAGE_SIZE), the build successfully continues.

#ifdef HAVE_sys_user_h
                /* Note: <sys/user.h> says: for gdb only */
#include <sys/user.h> /* for PAGE_SIZE and PAGE_SHIFT */
#else
#ifdef HAVE_asm_page_h
#include <asm/page.h>
#endif
#endif
Additional Information
Attached Files

- Relationships

There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
09-11-08 05:41 maleadt New Issue
09-11-08 05:41 maleadt Status new => assigned
09-11-08 05:41 maleadt Assigned To  => buildroot


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker