blob: c376ddef820ce67acf48335eb931e558f15bd21b [file] [log] [blame]
bjanakiraman7f4a4852013-02-15 04:35:28 +00001#!/usr/bin/python2.6
2#
3# Copyright 2010 Google Inc. All Rights Reserved.
4
5"""Script to build the ChromeOS toolchain.
6
7This script sets up the toolchain if you give it the gcctools directory.
8"""
9
10__author__ = "asharif@google.com (Ahmad Sharif)"
11
asharif80c6e552013-02-15 04:35:40 +000012import getpass
bjanakiraman7f4a4852013-02-15 04:35:28 +000013import optparse
asharif17621302013-02-15 04:46:35 +000014import os
bjanakiraman7f4a4852013-02-15 04:35:28 +000015import sys
asharif252df0f2013-02-15 04:46:28 +000016import tc_enter_chroot
asharife3668f12013-02-15 04:46:29 +000017import build_chromeos
asharif0d3535a2013-02-15 04:50:33 +000018import setup_chromeos
raymes01959ae2013-02-15 04:50:07 +000019from utils import command_executer
bjanakiraman7f4a4852013-02-15 04:35:28 +000020from utils import utils
raymes01959ae2013-02-15 04:50:07 +000021from utils import logger
bjanakiraman7f4a4852013-02-15 04:35:28 +000022
23# Common initializations
raymes01959ae2013-02-15 04:50:07 +000024cmd_executer = command_executer.GetCommandExecuter()
bjanakiraman7f4a4852013-02-15 04:35:28 +000025
bjanakiraman7f4a4852013-02-15 04:35:28 +000026
asharif0d3535a2013-02-15 04:50:33 +000027def Main(argv):
asharif19c73dd2013-02-15 04:35:37 +000028 """The main function."""
asharif0d3535a2013-02-15 04:50:33 +000029 rootdir = utils.GetRoot(sys.argv[0])[0]
30
asharif19c73dd2013-02-15 04:35:37 +000031 parser = optparse.OptionParser()
32 parser.add_option("-c", "--chromeos_root", dest="chromeos_root",
asharif0d3535a2013-02-15 04:50:33 +000033 help=("ChromeOS root checkout directory" +
34 " uses ../.. if none given."))
asharif19c73dd2013-02-15 04:35:37 +000035 parser.add_option("-t", "--toolchain_root", dest="toolchain_root",
36 help="Toolchain root directory.")
asharifd751e252013-02-15 04:35:52 +000037 parser.add_option("-b", "--board", dest="board", default="x86-generic",
asharif19c73dd2013-02-15 04:35:37 +000038 help="board is the argument to the setup_board command.")
asharifd751e252013-02-15 04:35:52 +000039 parser.add_option("-C", "--clean", dest="clean", default=False,
40 action="store_true",
asharife2cca302013-02-15 04:35:42 +000041 help="Uninstall the toolchain.")
asharifd751e252013-02-15 04:35:52 +000042 parser.add_option("-f", "--force", dest="force", default=False,
43 action="store_true",
asharife2cca302013-02-15 04:35:42 +000044 help="Do an uninstall/install cycle.")
asharif19c73dd2013-02-15 04:35:37 +000045 parser.add_option("-i", "--incremental", dest="incremental",
46 help="The toolchain component that should be "
47 "incrementally compiled.")
asharife2cca302013-02-15 04:35:42 +000048 parser.add_option("-B", "--binary", dest="binary",
49 action="store_true", default=False,
50 help="The toolchain should use binaries stored in "
51 "the install/ directory.")
asharif0d3535a2013-02-15 04:50:33 +000052 parser.add_option("-s", "--setup-chromeos-options",
53 dest="setup_chromeos_options",
54 help="Additional options that should be passed on to"
55 "the setup_chromeos script.")
56 parser.add_option("-o", "--output", dest="output",
57 default=rootdir + "/output",
58 help="The output directory where logs,pkgs, etc. go.")
bjanakiraman7f4a4852013-02-15 04:35:28 +000059
asharif0d3535a2013-02-15 04:50:33 +000060 options = parser.parse_args(argv)[0]
asharif17621302013-02-15 04:46:35 +000061
asharif19c73dd2013-02-15 04:35:37 +000062 if options.toolchain_root is None or options.board is None:
63 parser.print_help()
64 sys.exit()
bjanakiraman7f4a4852013-02-15 04:35:28 +000065
asharif0d3535a2013-02-15 04:50:33 +000066 if options.chromeos_root is None:
67 if os.path.exists("enter_chroot.sh"):
68 options.chromeos_root = "../.."
69 else:
70 logger.GetLogger().LogError("--chromeos_root not given")
71 parser.print_help()
72 sys.exit()
73 else:
74 options.chromeos_root = os.path.expanduser(options.chromeos_root)
75
asharif88f01422013-02-15 04:50:35 +000076 if ((not os.path.exists(options.chromeos_root)) or
77 (not os.path.exists(options.chromeos_root +
78 "/src/scripts/enter_chroot.sh"))):
asharif0d3535a2013-02-15 04:50:33 +000079 logger.GetLogger().LogOutput("Creating a chromeos checkout at: %s" %
80 options.chromeos_root)
asharif88f01422013-02-15 04:50:35 +000081 sc_args = []
82 sc_args.append("--dir=%s" % options.chromeos_root)
83 if options.setup_chromeos_options:
84 sc_args.append(options.setup_chromeos_options)
asharif0d3535a2013-02-15 04:50:33 +000085 setup_chromeos.Main(sc_args)
86
87 output = options.output
88
89 if output.startswith("/") == False:
90 output = os.getcwd() + "/" + output
91 else:
92 output = os.path.expanduser(output)
93
94 chroot_mount = "/usr/local/toolchain_root/"
95 chroot_base = utils.GetRoot(output)[1]
96 chroot_output = chroot_mount + chroot_base
97
98 tc_enter_chroot_options = []
asharif541b6392013-02-15 04:50:38 +000099 output_mount = ("--output=" + output)
asharif0d3535a2013-02-15 04:50:33 +0000100 tc_enter_chroot_options.append(output_mount)
101
asharife3668f12013-02-15 04:46:29 +0000102 build_chromeos.MakeChroot(options.chromeos_root)
103
asharife2cca302013-02-15 04:35:42 +0000104 portage_flags = ""
105 if options.binary == True:
106 # FIXME(asharif): This should be using --usepkg but that was not working.
107 portage_flags = "--usepkgonly"
108
asharif19c73dd2013-02-15 04:35:37 +0000109 f = open(options.chromeos_root + "/src/overlays/overlay-" +
110 options.board + "/toolchain.conf", "r")
111 target = f.read()
112 f.close()
113 target = target.strip()
asharif2d815d02013-02-15 04:36:02 +0000114 features = "noclean userfetch userpriv usersandbox -strict"
asharif09bfb6f2013-02-15 04:35:44 +0000115 if options.incremental is not None and options.incremental:
116 features += " keepwork"
asharif19c73dd2013-02-15 04:35:37 +0000117 env = CreateEnvVarString(" FEATURES", features)
asharif80c6e552013-02-15 04:35:40 +0000118 env += CreateEnvVarString(" PORTAGE_USERNAME", getpass.getuser())
asharif0d3535a2013-02-15 04:50:33 +0000119 logdir = "/logs"
120 pkgdir = "/pkgs"
121 tmpdir = "/objects"
122 installdir = "/install"
123 package_dir = output + pkgdir
124 portage_logdir = chroot_output + logdir
125 portage_pkgdir = chroot_output + pkgdir
126 portage_tmpdir = chroot_output + tmpdir
127 env += CreateEnvVarString(" PORT_LOGDIR", portage_logdir)
128 env += CreateEnvVarString(" PKGDIR", portage_pkgdir)
129 env += CreateEnvVarString(" PORTAGE_BINHOST", portage_pkgdir)
130 env += CreateEnvVarString(" PORTAGE_TMPDIR", portage_tmpdir)
asharif252df0f2013-02-15 04:46:28 +0000131 env += CreateEnvVarString(" USE", "mounted_sources")
asharif2d815d02013-02-15 04:36:02 +0000132
asharifd751e252013-02-15 04:35:52 +0000133 retval = 0
asharif80c6e552013-02-15 04:35:40 +0000134 if options.force == True:
asharifd751e252013-02-15 04:35:52 +0000135 retval = BuildTC(options.chromeos_root, options.toolchain_root, env,
asharif0d3535a2013-02-15 04:50:33 +0000136 target, True, options.incremental, portage_flags,
137 tc_enter_chroot_options)
asharifd751e252013-02-15 04:35:52 +0000138 retval = BuildTC(options.chromeos_root, options.toolchain_root, env,
asharif0d3535a2013-02-15 04:50:33 +0000139 target, options.clean, options.incremental, portage_flags,
140 tc_enter_chroot_options)
asharifd751e252013-02-15 04:35:52 +0000141 utils.AssertTrue(retval == 0, "Build toolchain failed!")
asharif0d3535a2013-02-15 04:50:33 +0000142 command = "sudo chown -R " + getpass.getuser() + " " + package_dir
asharifd751e252013-02-15 04:35:52 +0000143
144 if options.incremental is None and not options.clean:
asharif0d3535a2013-02-15 04:50:33 +0000145 install_dir = output + installdir
asharifd751e252013-02-15 04:35:52 +0000146 retval = InstallTC(package_dir, install_dir)
147 utils.AssertTrue(retval == 0, "Installation of the toolchain failed!")
148
149 return retval
asharife2cca302013-02-15 04:35:42 +0000150
151
152def CreateCrossdevPortageFlags(portage_flags):
asharif2d815d02013-02-15 04:36:02 +0000153 portage_flags = portage_flags.strip()
asharife2cca302013-02-15 04:35:42 +0000154 if not portage_flags:
155 return ""
156 crossdev_flags = " --portage "
157 crossdev_flags += " --portage ".join(portage_flags.split(" "))
158 return crossdev_flags
asharif19c73dd2013-02-15 04:35:37 +0000159
160
161def CreateEnvVarString(variable, value):
162 return variable + "=" + EscapeQuoteString(value)
163
164
165def EscapeQuoteString(string):
166 return "\\\"" + string + "\\\""
167
168
asharifd751e252013-02-15 04:35:52 +0000169def InstallTC(package_dir, install_dir):
asharif9994d292013-02-15 04:36:04 +0000170 command = ("mkdir -p " + install_dir)
171 command += ("&& for f in $(find " + package_dir +
ashariffcf8cfc2013-02-15 04:49:21 +0000172 " -name \\*.tbz2); do tar xf $f -C " +
173 install_dir + " ; done")
raymes01959ae2013-02-15 04:50:07 +0000174 retval = cmd_executer.RunCommand(command)
asharifd751e252013-02-15 04:35:52 +0000175 return retval
176
177
asharif19c73dd2013-02-15 04:35:37 +0000178def BuildTC(chromeos_root, toolchain_root, env, target, uninstall,
asharif0d3535a2013-02-15 04:50:33 +0000179 incremental_component, portage_flags, tc_enter_chroot_options):
asharif19c73dd2013-02-15 04:35:37 +0000180 """Build the toolchain."""
asharif2d815d02013-02-15 04:36:02 +0000181 portage_flags = portage_flags.strip()
182 portage_flags += " -b "
183
asharif19c73dd2013-02-15 04:35:37 +0000184 binutils_version = "2.20.1-r1"
185 gcc_version = "9999"
asharif17621302013-02-15 04:46:35 +0000186 libc_version = "2.10.1-r2"
asharif19c73dd2013-02-15 04:35:37 +0000187 kernel_version = "2.6.30-r1"
asharif19c73dd2013-02-15 04:35:37 +0000188
raymes01959ae2013-02-15 04:50:07 +0000189 rootdir = utils.GetRoot(sys.argv[0])[0]
asharif0d3535a2013-02-15 04:50:33 +0000190 argv = [rootdir + "/tc_enter_chroot.py",
asharife3668f12013-02-15 04:46:29 +0000191 "--chromeos_root=" + chromeos_root,
192 "--toolchain_root=" + toolchain_root]
asharif0d3535a2013-02-15 04:50:33 +0000193 argv += tc_enter_chroot_options
asharif252df0f2013-02-15 04:46:28 +0000194
asharif2d815d02013-02-15 04:36:02 +0000195 env += " "
196
asharif19c73dd2013-02-15 04:35:37 +0000197 if uninstall == True:
198 tflag = " -C "
199 else:
200 tflag = " -t "
201
asharif0269d462013-02-15 04:46:31 +0000202 command = " -- sudo " + env
asharif2d815d02013-02-15 04:36:02 +0000203
204 if uninstall == True:
205 command += " crossdev " + tflag + target
asharife3668f12013-02-15 04:46:29 +0000206 argv.append(command)
207 retval = tc_enter_chroot.Main(argv)
asharif2d815d02013-02-15 04:36:02 +0000208 return retval
asharif19c73dd2013-02-15 04:35:37 +0000209
210 if incremental_component == "binutils":
asharife2cca302013-02-15 04:35:42 +0000211 command += (" emerge =cross-" + target + "/binutils-" + binutils_version +
212 portage_flags)
asharif19c73dd2013-02-15 04:35:37 +0000213 elif incremental_component == "gcc":
asharife2cca302013-02-15 04:35:42 +0000214 command += (" emerge =cross-" + target + "/gcc-" + gcc_version +
215 portage_flags)
asharif19c73dd2013-02-15 04:35:37 +0000216 elif incremental_component == "libc" or incremental_component == "glibc":
asharife2cca302013-02-15 04:35:42 +0000217 command += (" emerge =cross-" + target + "/glibc-" + libc_version +
218 portage_flags)
asharif19c73dd2013-02-15 04:35:37 +0000219 else:
asharif2d815d02013-02-15 04:36:02 +0000220 crossdev_flags = CreateCrossdevPortageFlags(portage_flags)
asharif19c73dd2013-02-15 04:35:37 +0000221 command += (" crossdev -v " + tflag + target +
222 " --binutils " + binutils_version +
223 " --libc " + libc_version +
224 " --gcc " + gcc_version +
225 " --kernel " + kernel_version +
asharif2d815d02013-02-15 04:36:02 +0000226 crossdev_flags)
asharif19c73dd2013-02-15 04:35:37 +0000227
asharife3668f12013-02-15 04:46:29 +0000228 argv.append(command)
229 retval = tc_enter_chroot.Main(argv)
asharif19c73dd2013-02-15 04:35:37 +0000230 return retval
231
232if __name__ == "__main__":
asharif0d3535a2013-02-15 04:50:33 +0000233 Main(sys.argv)
asharifd751e252013-02-15 04:35:52 +0000234