mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
8 lines
249 B
Plaintext
8 lines
249 B
Plaintext
|
#!/bin/sh -x
|
||
|
|
||
|
# Change default cache partition (until LP: #1373467 is fixed).
|
||
|
if [ -f /etc/system-image/client.ini ]; then
|
||
|
sed -ie 's!cache_partition: /android/cache/recovery!cache_partition: /userdata/cache!g' \
|
||
|
/etc/system-image/client.ini
|
||
|
fi
|