projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ec94ac
)
[package] base-files: fix a preinit hang in jffs2_ready() when no rootfs_data partiti...
author
Jo-Philipp Wich
<jow@openwrt.org>
Thu, 20 May 2010 05:57:54 +0000
(
05:57
+0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Thu, 20 May 2010 05:57:54 +0000
(
05:57
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21511
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/lib/functions/boot.sh
patch
|
blob
|
history
diff --git
a/package/base-files/files/lib/functions/boot.sh
b/package/base-files/files/lib/functions/boot.sh
index
e6f6633
..
f93eec9
100644
(file)
--- a/
package/base-files/files/lib/functions/boot.sh
+++ b/
package/base-files/files/lib/functions/boot.sh
@@
-32,6
+32,7
@@
find_mtd_part() {
jffs2_ready () {
mtdpart="$(find_mtd_part rootfs_data)"
+ [ -z "$mtdpart" ] && return 1
magic=$(hexdump $mtdpart -n 4 -e '4/1 "%02x"')
[ "$magic" != "deadc0de" ]
}