summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mk/build.mk2
-rw-r--r--package/e2fsprogs/Makefile8
-rwxr-xr-xscripts/create.sh2
-rw-r--r--target/config/Config.in.runtime1
4 files changed, 7 insertions, 6 deletions
diff --git a/mk/build.mk b/mk/build.mk
index a025b1396..75a1a914c 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -101,7 +101,7 @@ POSTCONFIG= -@\
touch .rebuild.busybox;\
rebuild=1;\
fi; \
- for i in ADK_RUNTIME_PASSWORD ADK_RUNTIME_HOSTNAME ADK_TARGET_ROOTFS ADK_RUNTIME_CONSOLE;do \
+ for i in ADK_RUNTIME_PASSWORD ADK_RUNTIME_TMPFS_SIZE ADK_RUNTIME_HOSTNAME ADK_TARGET_ROOTFS ADK_RUNTIME_CONSOLE;do \
if [ "$$(grep ^$$i .config|md5sum)" != "$$(grep ^$$i .config.old|md5sum)" ];then \
touch .rebuild.base-files;\
rebuild=1;\
diff --git a/package/e2fsprogs/Makefile b/package/e2fsprogs/Makefile
index d7b44621a..4b7342197 100644
--- a/package/e2fsprogs/Makefile
+++ b/package/e2fsprogs/Makefile
@@ -30,16 +30,16 @@ PKGSD_E2FSCK_STATIC:= Static build of e2fsck
PKGSC_E2FSCK_STATIC:= fs
PKGSD_RESIZE2FS:= Resize FS utility
PKGSC_RESIZE2FS:= fs
-PKGSS_RESIZE2FS:= libe2fs
+PKGSS_RESIZE2FS:= libe2fs libcom-err libblkid
PKGSD_TUNE2FS:= Tune2FS utility
PKGSC_TUNE2FS:= fs
-PKGSS_TUNE2FS:= libe2fs
+PKGSS_TUNE2FS:= libe2fs libcom-err libblkid libuuid
PKGSD_E2FSCK:= E2fsck utility
PKGSC_E2FSCK:= fs
-PKGSS_E2FSCK:= libe2fs
+PKGSS_E2FSCK:= libe2fs libcom-err libblkid libuuid
PKGSD_MKE2FS:= Mke2fs utility
PKGSC_MKE2FS:= fs
-PKGSS_MKE2FS:= libe2fs
+PKGSS_MKE2FS:= libe2fs libcom-err libblkid libuuid
include ${TOPDIR}/mk/package.mk
diff --git a/scripts/create.sh b/scripts/create.sh
index ef6e644ab..08800f0aa 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 -b $((partfssz)) -d src fsimg || f=1
+genext2fs -U -N 16384 -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")
diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime
index 4532d4442..51b2dde0c 100644
--- a/target/config/Config.in.runtime
+++ b/target/config/Config.in.runtime
@@ -22,6 +22,7 @@ config ADK_RUNTIME_PASSWORD
config ADK_RUNTIME_TMPFS_SIZE
string "size of /tmp in memory (kB)"
+ default "16384" if ADK_HARDWARE_QEMU
default "32768" if ADK_TARGET_SYSTEM_IBM_X40
default "32768" if ADK_TARGET_SYSTEM_RASPBERRY_PI
default "2048"