diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-12-02 21:46:46 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-12-02 21:46:46 +0000 |
commit | c0642e9a07099c8152742905992450baaca7552a (patch) | |
tree | 714fd4447663750e2012f382ed19d2e7bb135647 /make/ext2root.mk | |
parent | bfda40a58f1929e8a82dd9fa79f30d2454ca887c (diff) | |
download | buildroot-novena-c0642e9a07099c8152742905992450baaca7552a.tar.gz buildroot-novena-c0642e9a07099c8152742905992450baaca7552a.zip |
Add some extra slack space. mips rootfs generation was failing because
to small a size was used (probably a result of my using reiserfs).
Diffstat (limited to 'make/ext2root.mk')
-rw-r--r-- | make/ext2root.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/ext2root.mk b/make/ext2root.mk index 889cb05a9..5171ac2ed 100644 --- a/make/ext2root.mk +++ b/make/ext2root.mk @@ -32,7 +32,8 @@ genext2fs: $(GENEXT2_DIR)/genext2fs ############################################################# # How much KB we want to add to the calculated size for slack space -GENEXT2_ADDTOROOTSIZE=4096 +#GENEXT2_ADDTOROOTSIZE=4096 +GENEXT2_ADDTOROOTSIZE=16384 GENEXT2_REALSIZE=$(subst total,, $(shell du $(TARGET_DIR) -s -c -k | grep total )) GENEXT2_SIZE=$(shell expr $(GENEXT2_REALSIZE) + $(GENEXT2_ADDTOROOTSIZE)) # We currently add about 400 device nodes, so add that into the total |