소스 검색

Some badly behaved arches fail to provide a PAGE_SIZE define

Eric Andersen 22 년 전
부모
커밋
c761b902cd
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      ldso/include/ldso.h

+ 4 - 0
ldso/include/ldso.h

@@ -11,3 +11,7 @@
 #include <ld_string.h>
 /* Pull in the arch specific page size */
 #include <asm/page.h>
+#ifndef PAGE_SIZE
+#  define PAGE_SHIFT		12
+#  define PAGE_SIZE		(1UL << PAGE_SHIFT)
+#endif