Difference between revisions of "WOCE Build Instructions"

From WebOS-Ports
Jump to navigation Jump to search
m (→‎Start setup: fixed git prefix)
(→‎Installing the Binaries: fixed typo in put command)
Line 46: Line 46:
 
==Installing the Binaries==
 
==Installing the Binaries==
 
  novacom run -- file:///sbin/stop LunaSysMgr
 
  novacom run -- file:///sbin/stop LunaSysMgr
  novacom put file:///usr/bin/LunaSysMgr ./packages/sysmgr/luna-sysmgr/build/armv7-stage/release-topaz/LunaSysMgr
+
  novacom put file:///usr/bin/LunaSysMgr < ./packages/sysmgr/luna-sysmgr/build/armv7-stage/release-topaz/LunaSysMgr
 
  novacom run -- file:///sbin/start LunaSysMgr
 
  novacom run -- file:///sbin/start LunaSysMgr
  

Revision as of 21:27, 28 June 2012

Supported Platforms

Currently the only supported platform is Ubuntu 12.04. We have tested and confirmed that x32 and x64 Ubuntu Desktop and Server successfully build WOCE. Other platforms may work but are not supported.

Older versions of Ubuntu may also work, it's been tested successfully on Ubuntu 10.10. It's also very likely that you'll have success with Debian or Debian-based distributions.

Prerequisites on Debian-based systems

Your Debian/Ubuntu installation will need the following installed. If you do not have them, run the command after the package name. You can test if they are found by just typing the command name. If it says command not found, you need to install it.

git sudo apt-get install git
gcc sudo apt-get install build-essential
python sudo apt-get install python
curl sudo apt-get install curl
unzip sudo apt-get install unzip

If you're uncertain at all, just cut and paste the following. If some of these packages are already installed and up-to-date, they'll be skipped.

sudo apt-get install git build-essential python curl unzip

Note: If you are a beginner with Ubuntu Linux Distribution, you should update all the packages on your system to avoid problems when you will compile.

Note: If you are using x64 ubuntu you also need to install the following package

ia32-libs and g++-multilib sudo apt-get install ia32-libs g++-multilib

Start setup

  • Create a WOCE directory, we recommend you place it in your home directory.
  • Clone down the woce-build repo from github
git clone git://www.github.com/woce/woce-build
  • Start the build. This is as simple as cd'ing into the woce-build directory and running make or if you have multiple cores make -j<number of cores here>
  • IMPORTANT: Ignore patch failures for now, it's a known issue
  • When the build finishes the binaries will be under the packages folder in their appropriate directories (e.g. LunaSysMgr in ./packages/sysmgr/luna-sysmgr/build/armv7-stage/release-topaz/LunaSysMgr)

Installing the Binaries

novacom run -- file:///sbin/stop LunaSysMgr
novacom put file:///usr/bin/LunaSysMgr < ./packages/sysmgr/luna-sysmgr/build/armv7-stage/release-topaz/LunaSysMgr
novacom run -- file:///sbin/start LunaSysMgr

Done!

You're done! Your very own LunaSysMgr should now start on your TouchPad.

Don't forget to join the IRC channel #webos-ports on Freenode and report any issues to WebOS Port's bugtracker. Oh, and contribute your code changes!