diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-11 21:00:38 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-11 21:00:38 +0100 |
commit | f2da09bcd19883ebc148f67f6e09c5eff23fc656 (patch) | |
tree | 6e515aa075eda86a97e40c41298268d271ba23d3 | |
parent | 68f67458e8e92594227640b8dca1526646d09f87 (diff) | |
parent | 5185e666b0c70f581b66ddb51a145de560d36026 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
-rw-r--r-- | package/glibc/Makefile | 12 | ||||
-rwxr-xr-x | scripts/create.sh | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/package/glibc/Makefile b/package/glibc/Makefile index d6d1bf3ce..850280ab5 100644 --- a/package/glibc/Makefile +++ b/package/glibc/Makefile @@ -53,23 +53,23 @@ glibc-dev-install: -cp ./files/libc.so.$(CPU_ARCH) $(IDIR_GLIBC_DEV)/usr/lib/libc.so ifeq ($(ADK_TARGET_ABI_O32),y) ifeq ($(ADK_big),y) - $(SED) "s#@@ELFFORMAT@@#elf32-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so + $(SED) "s#@@ELFTARGET@@#elf32-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so else - $(SED) "s#@@ELFFORMAT@@#elf32-tradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so + $(SED) "s#@@ELFTARGET@@#elf32-tradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so endif endif ifeq ($(ADK_TARGET_ABI_N32),y) ifeq ($(ADK_big),y) - $(SED) "s#@@ELFFORMAT@@#elf32-ntradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so + $(SED) "s#@@ELFTARGET@@#elf32-ntradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so else - $(SED) "s#@@ELFFORMAT@@#elf32-ntradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so + $(SED) "s#@@ELFTARGET@@#elf32-ntradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so endif endif ifeq ($(ADK_TARGET_ABI_N64),y) ifeq ($(ADK_big),y) - $(SED) "s#@@ELFFORMAT@@#elf64-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so + $(SED) "s#@@ELFTARGET@@#elf64-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so else - $(SED) "s#@@ELFFORMAT@@#elf64-tradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so + $(SED) "s#@@ELFTARGET@@#elf64-tradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so endif endif ${CP} ${STAGING_TARGET_DIR}/usr/lib/crt* ${IDIR_GLIBC_DEV}/usr/lib diff --git a/scripts/create.sh b/scripts/create.sh index 08800f0aa..058942314 100755 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -297,7 +297,7 @@ fi print "Creating ext2fs filesystem image..." cd "$T" f=0 -genext2fs -U -N 16384 -b $((partfssz)) -d src fsimg || f=1 +genext2fs -U -N 32768 -b $((partfssz)) -d src fsimg || f=1 if (( !f )); then # use bc(1): this may be over the shell’s 32-bit arithmetics wantsz=$($bc <<<"$((partfssz))*1024") |