mirror of
https://github.com/coolsnowwolf/lede
synced 2025-01-07 07:46:47 +08:00
ramips: fix HATLab GateBoard-One Support
This commit is contained in:
parent
2173f1c0ea
commit
31a2de36ab
@ -303,7 +303,7 @@ menu "Target Images"
|
||||
|
||||
config TARGET_ROOTFS_PARTSIZE
|
||||
int "Root filesystem partition size (in MB)"
|
||||
depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_omap || TARGET_sunxi || TARGET_uml
|
||||
depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_omap || TARGET_sunxi || TARGET_uml || TARGET_ramips
|
||||
default 400
|
||||
help
|
||||
Select the root filesystem partition size.
|
||||
|
13
scripts/gen-rddependencies.sh
Executable file
13
scripts/gen-rddependencies.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
TARGETS=$*
|
||||
READELF="${READELF:-readelf}"
|
||||
XARGS="${XARGS:-xargs -r}"
|
||||
|
||||
find $TARGETS -type f -a -exec file {} \; | \
|
||||
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|shared object\).*,.*/\1/p' | \
|
||||
$XARGS -n1 $READELF -l | grep 'Requesting' | cut -d':' -f2 | tr -d ' ]' | \
|
||||
$XARGS basename
|
||||
|
||||
cd `dirname ${0}`
|
||||
./gen-dependencies.sh ${TARGETS}
|
Loading…
Reference in New Issue
Block a user