diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2013-10-03 09:42:44 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-08 16:30:15 +0100 |
commit | 4570c2e937d24531c55ff1d0f37cb20ee3074d95 (patch) | |
tree | b91508fece5e24f7180104a1db7068c9784b71d1 | |
parent | 5dfb1de6ffb2d99cec084282e20b9c7d1f783330 (diff) | |
download | poky-4570c2e937d24531c55ff1d0f37cb20ee3074d95.tar.gz |
dev-manual: Changed "$" to "#" for runtime packaging section
This fixes the prompt to be "#" rather than "$", which is a
convention for running commands at a different level according
to Trevor Woerner.
(From yocto-docs rev: b8eebdf4738c8655db724498a2293a44cae331dc)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 1f49cb24f4..ff4bbcd3ea 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -3844,15 +3844,15 @@ | |||
3844 | If your development system is using Fedora or | 3844 | If your development system is using Fedora or |
3845 | CentOS, use the following: | 3845 | CentOS, use the following: |
3846 | <literallayout class='monospaced'> | 3846 | <literallayout class='monospaced'> |
3847 | $ service httpd reload | 3847 | # service httpd reload |
3848 | </literallayout> | 3848 | </literallayout> |
3849 | For Ubuntu and Debian, use the following: | 3849 | For Ubuntu and Debian, use the following: |
3850 | <literallayout class='monospaced'> | 3850 | <literallayout class='monospaced'> |
3851 | $ /etc/init.d/apache2 reload | 3851 | # /etc/init.d/apache2 reload |
3852 | </literallayout> | 3852 | </literallayout> |
3853 | For OpenSUSE, use the following: | 3853 | For OpenSUSE, use the following: |
3854 | <literallayout class='monospaced'> | 3854 | <literallayout class='monospaced'> |
3855 | $ /etc/init.d/apache2 reload | 3855 | # /etc/init.d/apache2 reload |
3856 | </literallayout></para></listitem> | 3856 | </literallayout></para></listitem> |
3857 | <listitem><para> | 3857 | <listitem><para> |
3858 | If you are using Security-Enhanced Linux | 3858 | If you are using Security-Enhanced Linux |
@@ -3862,7 +3862,7 @@ | |||
3862 | host. | 3862 | host. |
3863 | This example assumes RPM package types: | 3863 | This example assumes RPM package types: |
3864 | <literallayout class='monospaced'> | 3864 | <literallayout class='monospaced'> |
3865 | $ chcon -R -h -t httpd_sys_content_t tmp/deploy/rpm | 3865 | # chcon -R -h -t httpd_sys_content_t tmp/deploy/rpm |
3866 | </literallayout></para></listitem> | 3866 | </literallayout></para></listitem> |
3867 | </orderedlist> | 3867 | </orderedlist> |
3868 | </para> | 3868 | </para> |
@@ -3890,7 +3890,7 @@ | |||
3890 | then you might create a link from your build location | 3890 | then you might create a link from your build location |
3891 | to lighttpd's document-root as follows: | 3891 | to lighttpd's document-root as follows: |
3892 | <literallayout class='monospaced'> | 3892 | <literallayout class='monospaced'> |
3893 | $ ln -s $(PWD)/tmp/deploy/ipk /var/www/lighttpd/BOARD-dir | 3893 | # ln -s $(PWD)/tmp/deploy/ipk /var/www/lighttpd/BOARD-dir |
3894 | </literallayout> | 3894 | </literallayout> |
3895 | </para> | 3895 | </para> |
3896 | 3896 | ||
@@ -3900,7 +3900,7 @@ | |||
3900 | distribution. | 3900 | distribution. |
3901 | However, one basic method that starts it by hand is: | 3901 | However, one basic method that starts it by hand is: |
3902 | <literallayout class='monospaced'> | 3902 | <literallayout class='monospaced'> |
3903 | $ lighttpd -f /etc/lighttpd/lighttpd.conf | 3903 | # lighttpd -f /etc/lighttpd/lighttpd.conf |
3904 | </literallayout> | 3904 | </literallayout> |
3905 | </para> | 3905 | </para> |
3906 | </section> | 3906 | </section> |
@@ -3936,14 +3936,14 @@ | |||
3936 | Given this example, issue the following commands on the | 3936 | Given this example, issue the following commands on the |
3937 | target: | 3937 | target: |
3938 | <literallayout class='monospaced'> | 3938 | <literallayout class='monospaced'> |
3939 | $ smart channel --add all type=rpm-md baseurl=http://server.name/rpm/all | 3939 | # smart channel --add all type=rpm-md baseurl=http://server.name/rpm/all |
3940 | $ smart channel --add i585 type=rpm-md baseurl=http://server.name/rpm/i586 | 3940 | # smart channel --add i585 type=rpm-md baseurl=http://server.name/rpm/i586 |
3941 | $ smart channel --add qemux86 type=rpm-md baseurl=http://server.name/rpm/qemux86 | 3941 | # smart channel --add qemux86 type=rpm-md baseurl=http://server.name/rpm/qemux86 |
3942 | </literallayout> | 3942 | </literallayout> |
3943 | Also from the target machine, fetch the repository | 3943 | Also from the target machine, fetch the repository |
3944 | information using this command: | 3944 | information using this command: |
3945 | <literallayout class='monospaced'> | 3945 | <literallayout class='monospaced'> |
3946 | $ smart update | 3946 | # smart update |
3947 | </literallayout> | 3947 | </literallayout> |
3948 | You can now use the <filename>smart query</filename> | 3948 | You can now use the <filename>smart query</filename> |
3949 | and <filename>smart install</filename> commands to | 3949 | and <filename>smart install</filename> commands to |
@@ -4017,7 +4017,7 @@ | |||
4017 | On the target machine, fetch (or refresh) the | 4017 | On the target machine, fetch (or refresh) the |
4018 | repository information using this command: | 4018 | repository information using this command: |
4019 | <literallayout class='monospaced'> | 4019 | <literallayout class='monospaced'> |
4020 | $ opkg update | 4020 | # opkg update |
4021 | </literallayout> | 4021 | </literallayout> |
4022 | You can now use the <filename>opkg list</filename> and | 4022 | You can now use the <filename>opkg list</filename> and |
4023 | <filename>opkg install</filename> commands to find and | 4023 | <filename>opkg install</filename> commands to find and |