diff options
| author | Richard Purdie <richard@openedhand.com> | 2008-02-11 10:25:26 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2008-02-11 10:25:26 +0000 |
| commit | 54d555505e839bdb9122174a843e98990e9c9096 (patch) | |
| tree | 19282da2e34a32a9aed3474a761d5fc2bfc724c4 | |
| parent | e87e94bdefe0e4d6a3180c65f655ce650094b3af (diff) | |
| download | poky-54d555505e839bdb9122174a843e98990e9c9096.tar.gz | |
qemu-helper: Fix symlinks
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3738 311d38ba-8fff-0310-9ca6-ca027cbcb966
| -rw-r--r-- | meta/packages/qemu/qemu-helper-sdk_1.0.bb | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/meta/packages/qemu/qemu-helper-sdk_1.0.bb b/meta/packages/qemu/qemu-helper-sdk_1.0.bb index 4e3a15b762..49136c7dbf 100644 --- a/meta/packages/qemu/qemu-helper-sdk_1.0.bb +++ b/meta/packages/qemu/qemu-helper-sdk_1.0.bb | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | DESCRIPTION = "Qemu helper scripts from Poky" | 1 | DESCRIPTION = "Qemu helper scripts from Poky" |
| 2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
| 3 | RDEPENDS = "qemu-sdk" | 3 | RDEPENDS = "qemu-sdk" |
| 4 | PR = "r5" | 4 | PR = "r6" |
| 5 | 5 | ||
| 6 | FILESPATH = "${FILE_DIRNAME}/qemu-helper" | 6 | FILESPATH = "${FILE_DIRNAME}/qemu-helper" |
| 7 | 7 | ||
| @@ -17,20 +17,18 @@ inherit sdk | |||
| 17 | 17 | ||
| 18 | do_compile() { | 18 | do_compile() { |
| 19 | ${CC} raw2flash.c -o raw2flash.spitz | 19 | ${CC} raw2flash.c -o raw2flash.spitz |
| 20 | ln -fs raw2flash.spitz raw2flash.akita | ||
| 21 | ln -fs raw2flash.spitz raw2flash.borzoi | ||
| 22 | ln -fs raw2flash.spitz raw2flash.terrier | ||
| 23 | ${CC} raw2flash.c -o flash2raw.spitz -Dflash2raw | 20 | ${CC} raw2flash.c -o flash2raw.spitz -Dflash2raw |
| 24 | ln -fs flash2raw.spitz flash2raw.akita | ||
| 25 | ln -fs flash2raw.spitz flash2raw.borzoi | ||
| 26 | ln -fs flash2raw.spitz flash2raw.terrier | ||
| 27 | } | 21 | } |
| 28 | 22 | ||
| 29 | do_install() { | 23 | do_install() { |
| 30 | install -d ${D}${bindir} | 24 | install -d ${D}${bindir} |
| 31 | install -m 0755 poky-* ${D}${bindir}/ | 25 | install -m 0755 poky-* ${D}${bindir}/ |
| 32 | install -m 0755 *.akita ${D}${bindir}/ | 26 | install raw2flash.spitz ${D}${bindir}/ |
| 33 | install -m 0755 *.spitz ${D}${bindir}/ | 27 | install flash2raw.spitz ${D}${bindir}/ |
| 34 | install -m 0755 *.borzoi ${D}${bindir}/ | 28 | ln -fs raw2flash.spitz ${D}${bindir}/raw2flash.akita |
| 35 | install -m 0755 *.terrier ${D}${bindir}/ | 29 | ln -fs raw2flash.spitz ${D}${bindir}/raw2flash.borzoi |
| 30 | ln -fs raw2flash.spitz ${D}${bindir}/raw2flash.terrier | ||
| 31 | ln -fs flash2raw.spitz ${D}${bindir}/flash2raw.akita | ||
| 32 | ln -fs flash2raw.spitz ${D}${bindir}/flash2raw.borzoi | ||
| 33 | ln -fs flash2raw.spitz ${D}${bindir}/flash2raw.terrier | ||
| 36 | } | 34 | } |
