Difference between pages "ReBootstrap" and "Package:Sublime Text Editor"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
 
 
Line 1: Line 1:
This page documents the effort to bootstrap Funtoo Linux using Aboriginal Linux.
{{Ebuild
|Summary=Sublime Text is an advanced commercial text editor.
|CatPkg=app-editors/sublime-text
|Maintainer=Oleg,
|Homepage=http://sublimetext.com
}}
Sublime Text is a very complete text editor with lots of features, and support for plugins. It's free, but often shows a popup showing that's unregistered, so you can purchase the license for USD$70.


= What is Aboriginal Linux? =
== Install ==
First, you must have installed [[Package:Layman|Layman]] with Git support. Then, add the overlay ''sublime-text'':


Aboriginal Linux's motto is "we cross compile so you don't have to".  It replaces cross compiling with native compiling under an emulator (generally QEMU).  Funtoo can use this to natively create stage 1/2/3 root filesystems on an arbitrary target, which greatly simplifies adding support for new architectures and regression testing existing architectures.
<console>###i## layman -a sublime-text</console>


Aboriginal Linux creates a simple native development environment for each type of target hardware, building the smallest self-contained Linux system capable of rebuilding itself entirely from source code.  This requires seven packages: linux, uClibc, busybox, binutils, gcc, make, and bash.
Now, install the version you want. For the version 2:
<console>###i## emerge -av sublime-text:2</console>


The resulting system can then boot under QEMU (or on appropriate hardware, if available) to provide a native development environment, eliminating the need for any further cross compiling.  You can wget, configure, make, and install additional source packages inside the emulator.
For the version 3 (default):
<console>###i## emerge -av sublime-text:3</console>


Aboriginal Linux's web page is at http://landley.net/aboriginal and a long presentation about it is available at http://speakerdeck.com/u/mirell/p/developing-for-non-x86-targets-using-qemu
You can have installed both versions, so you must install it with the USE flag ''multislot'', that also brings the package eselect-sublime.
 
{{EbuildFooter}}
== How do I use Aboriginal Linux? ==
 
Aboriginal Linux provides prebuilt native development environments for x86, x86-64, arm, mips, powerpc, and more, ready to run under the emulator.  Install QEMU 1.0 or later, then go to http://landley.net/aboriginal/downloads/binaries", grab the appropriate system-image tarball, extract it, and run one of the following three shell scripts (included in the tarball):
 
* '''./run-emulator.sh''' - Boot to a shell prompt, with the simplest configuration: a read-only (squashfs) root filesystem with a tmpfs mounted on /home.
 
* '''./dev-environment.sh''' - Boot to a shell prompt with a full development environment.  This wrapper around run-emulator.sh adds a 2 gigabyte ext2 /dev/hdb image mounted on /home (persistent writeable space, in large amounts), and allocates 256 megabytes of physical memory for the emulator (enough to run gcc building complex packages).  If distccd and the appropriate target's cross compiler are available in the host's $PATH, this script also configures the emulated environment to call out to the cross compiler via distcc, transparently moving the heavy lifting of compilation outside of the emulator.
 
* '''./native-build.sh''' - Run an automated build.  This requires a "control image", which is a squashfs filesystem the emulated system sees as /dev/hdc mounted on /mnt.  The init script in the emulated root filesystem checks for /mnt/init and if that exists, it runs that instead of providing a shell prompt.  (Actually it asks the user to press a key if they want a shell prompt, with a three second timeout.)  See "http://landley.net/aboriginal/control-images" for details.
 
(You can build your own system images from source by following the instructions at "http://landley.net/aboriginal", but ReBootstrap does not require this.)
 
== What is an "LFS build"? ==
 
It's a [http://www.linuxfromscratch.org/lfs/view/6.8/ Linux From Scratch] root filesystem natively built on top of an Aboriginal Linux system image.
 
One of the example native-build.sh control-images Aboriginal Linux provides is "lfs-bootstrap.hdc", which natively compiles and installs (almost) all of the LFS chapter 6 packages under the emulated development environment, according to the LFS build instructions.
 
The control image copies the read-only root filesystem into a writeable directory under /home, chroots into that, builds packages and installs them over the existing (busybox) versions, and then tars up the resulting filesystem.
 
This provides a much more capable native build environment for the target.  Since Aboriginal Linux can already provide this for the supported targets, Funtoo uses this as its starting point instead of starting from the minimal build environment and building/installing all of its own prerequisites.
 
= The plan of attack is as follows: =
 
# Start from an LFS build, plus necessary stuff for Portage to run.  (Git, python, portage tree, profile...)
## Use the i686 target first, so we can test quickly via chroot.
# Create a <tt>package.provided</tt> file for the local LFS system so that Portage doesn't complain of unsatisfied <tt>/var/db/pkg</tt> entries.
# Use Portage to build a stage1 tarball to /tmp/stage1root.
 
Once we have a stage 1 for the target, Funtoo has been bootstrapped and we can extend this approach to bootstrap Funtoo on any architecture.
 
== Details ==
 
* Setup LFS-i686 filesystem
 
:wget http://landley.net/aboriginal/downloads/binaries/extras/lfs-bootstrap.tar.gz-i686
:tar xvzf lfs-bootstrap.tar.gz-i686
:sudo env -i HOST=i686 $(which chroot) lfs-bootstrap /sbin/init.sh
 
* Install python
 
:wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2
:tar xf Python-2.7.2.tar.bz2
:cd Python-2.7.2
:./configure --prefix=/usr
:make -j $CPUS
:make install
 
* Install git
 
:wget http://git-core.googlecode.com/files/git-1.7.8.2.tar.gz
:tar xzvf git-1.7.8.2.tar.gz
:cd git-1.7.8.2
:./configure --without-tcltk --without-python --without-iconv
:make NO_PERL=1
:make NO_PERL=1 install
 
* Install portage tool
 
:cd /usr/lib
:git clone git://github.com/funtoo/portage-funtoo portage
:cd portage
:mkdir -p /usr/share/portage
:ln -s /usr/lib/portage/cnf /usr/share/portage/config
:for i in emerge ebuild; do ln -s /usr/lib/portage/bin/$i /usr/bin/$i; done
 
* Install portage tree, setup profiles
 
:cd /usr
:tar xvzf portage_tarball.tar.gz
:mv portage-system portage
:ln -s /usr/portage/profiles/default/linux/$ARCH/2008.0 /etc/make.profile
 
* setup package.provided
 
:git clone git://github.com/funtoo/funtoo-overlay /var/tmp/funtoo-overlay
:mkdir -p /etc/portage
:cp /var/tmp/funtoo-overlay/funtoo/scripts/stage3.provided /etc/portage/package.provided
 
* Try to emerge something.  Notice it doesn't work.  Frown at it.
** package.provided doesn't support USE flags.  What the...?
 
== Prerequisites ==
 
# A smaller Portage tree to not eat up so much filesystem space. This has now been implemented. The script <tt>/root/git/funtoo-overlay/funtoo/scripts/generate-system-tree.py</tt> can be used to generate a system-only Portage tree.
## The dependencies are still circular and strange.
### Libtool is an abomination.  It exists to make non-elf systems behave like ELF, and since Linux switched from a.out to ELF in 1996 (when it was 4 years old) there's nothing for Libtool to actually DO on Linux, yet it still manages not to do it properly.  Literally the ONLY thing installing Libtool on a Linux system does is introduce build breaks.  (Thank you, Free Software Foundation.)
# A <tt>package.provided</tt> list of a current Funtoo system. This can be found at <tt>/root/git/funtoo-overlay/funtoo/scripts/stage3-provided.txt</tt>.
#The profiles aren't target-agnostic.  There's no way to go
"build for this host, I don't really care what it is".
## You need an existing toolchain to build anything, and if it's gcc its "tuple" is available via "gcc -dumpmachine", so this is queryable at runtime.
## See [http://www.funtoo.org/wiki/Funtoo_1.0_Profile] for ongoing work to genericize this.
### the keywords=* stuff helps greatly, but make.conf moved into profiles and is still somewhat target-specific.  More cleanup needed here.  How do you build on an arbitrary host without human intervention (from a cron job)?
 
== Status ==
 
The approach above didn't seem to correctly provide needed dependencies. Options at this point:
 
# Bundle up what we have as a stage3 and see if Metro's steps are more successful at using it as a stage3 (we were trying simple emerge commands rather than the explicit metro steps for testing)
## When you cd into the profile directory and emerge an ebuild file directly, it generally builds.  It's dependency calculation that's screwed up: package.provided injects a blank package with no USE flags, and anything that depends on a package with a USE flag tries to rebuild that package.  I.E. package.provided is essentially useless.
### drobbins suggested something like "portage inject packagename USE="flag flag flag" [files...]" to retroactively notify portage of an installed package.  (Aboriginal Linux has a BINARY_PACKAGE_TARBALLS option using "touch timestamp; build package; find output -newer timestamp", and this could be inserted in the LFS build fairly easily.  Or just use a blank file list and not care that portage can't upgrade/uninstall the package, we just need the dependency generation to work.)
# If package.provided is not working, simply copy <tt>/var/db/pkg</tt> from an existing stage3 for a massive injection of fake package information.
# Or the option we are going to go with, which is stop trying to build a stage3, and build a minimal stage1 that we will feed to metro to take care of the rest.
 
[[Category:Labs]] [[Category:Projects]]

Latest revision as of 04:52, January 3, 2015

Sublime Text Editor

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Sublime Text is a very complete text editor with lots of features, and support for plugins. It's free, but often shows a popup showing that's unregistered, so you can purchase the license for USD$70.

Install

First, you must have installed Layman with Git support. Then, add the overlay sublime-text:

root # layman -a sublime-text

Now, install the version you want. For the version 2:

root # emerge -av sublime-text:2

For the version 3 (default):

root # emerge -av sublime-text:3

You can have installed both versions, so you must install it with the USE flag multislot, that also brings the package eselect-sublime.