diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2024-07-05 13:47:17 +0900 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2024-07-05 13:49:04 +0900 |
commit | a33b969cee5139dfe21a2112860fc5837d48075f (patch) | |
tree | 530924ce62d2d2ae16bc48fd05d0018c103efb44 | |
parent | 40151cd50d49a11ab7c0581de496a86659449666 (diff) | |
download | rootstrap-a33b969cee5139dfe21a2112860fc5837d48075f.tar.gz rootstrap-a33b969cee5139dfe21a2112860fc5837d48075f.tar.bz2 rootstrap-a33b969cee5139dfe21a2112860fc5837d48075f.zip |
generate_rootstrap: Change rs_resource path installed by hal-rootstrap-[profile]
hal-rootstrap-[profile] will install the rs_resource files into
/tmp/rs_resource path and then hal-rootstrap.git will get the xml of
package information under /tmp/rs_resource/ directory.
Change-Id: I7d83b9abc7c987cfa141bce71cbb18a9b9c1c6b7
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
-rwxr-xr-x | generate_rootstrap.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generate_rootstrap.sh b/generate_rootstrap.sh index f4a1441..8262fbc 100755 --- a/generate_rootstrap.sh +++ b/generate_rootstrap.sh @@ -19,7 +19,7 @@ function generate_rootstrap_ix86 { return $? fi - ./make_rootstrap.sh -C rs-config ./rs_resource --emulator -A i686 + ./make_rootstrap.sh -C rs-config /tmp/rs_resource --emulator -A i686 RET=$? if [[ ${RET} -ne 0 ]]; then echo "Failed to create rootstrap." @@ -35,7 +35,7 @@ function generate_rootstrap_x86_64 { return $? fi - ./make_rootstrap_64.sh -C rs-config ./rs_resource --emulator -A x86_64 + ./make_rootstrap_64.sh -C rs-config /tmp/rs_resource --emulator -A x86_64 RET=$? if [[ ${RET} -ne 0 ]]; then echo "Failed to create rootstrap." @@ -51,7 +51,7 @@ function generate_rootstrap_arm { return $? fi - ./make_rootstrap.sh -C rs-config ./rs_resource --target -A arm + ./make_rootstrap.sh -C rs-config /tmp/rs_resource --target -A arm RET=$? if [[ ${RET} -ne 0 ]]; then echo "Failed to create rootstrap." @@ -67,7 +67,7 @@ function generate_rootstrap_aarch64 { return $? fi - ./make_rootstrap_64.sh -C rs-config ./rs_resource --target -A aarch64 + ./make_rootstrap_64.sh -C rs-config /tmp/rs_resource --target -A aarch64 RET=$? if [[ ${RET} -ne 0 ]]; then echo "Failed to create rootstrap." @@ -83,7 +83,7 @@ function generate_rootstrap_riscv64 { return $? fi - ./make_rootstrap_64.sh -C rs-config ./rs_resource --target -A riscv64 + ./make_rootstrap_64.sh -C rs-config /tmp/rs_resource --target -A riscv64 RET=$? if [[ ${RET} -ne 0 ]]; then echo "Failed to create rootstrap." |