You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The directory structure described here is a recommendation based on the best practice in the Fyde team. You may host the files in a different way as you wish.
144
144
145
145
```
146
-
$ mkdir -p /project/chromiumos-R68 # This is the directory to hold Chromium OS source code, name it according to the release you are going to build.
146
+
$ mkdir -p /project/chromiumos-R70 # This is the directory to hold Chromium OS source code, name it according to the release you are going to build.
147
147
$ mkdir -p /project/overlays # This is the directory to hold this repository.
148
148
```
149
149
@@ -162,8 +162,8 @@ You will see a list of Git commit IDs and its name in the form of ```refs/heads/
162
162
Now run these commands to fetch the source code. Find and use a different release name if you would like to build a different release.
163
163
164
164
```
165
-
$ cd /project/chromiumos-R68
166
-
$ repo init -u https://chromium.googlesource.com/chromiumos/manifest.git --repo-url https://chromium.googlesource.com/external/repo.git -b stabilize-10718.88.B # The last R68 stable release
165
+
$ cd /project/chromiumos-R70
166
+
$ repo init -u https://chromium.googlesource.com/chromiumos/manifest.git --repo-url https://chromium.googlesource.com/external/repo.git -b stabilize-10718.88.B # The last R70 stable release
167
167
$ repo sync -j8 # Raise this number if you have a fast Internet connection
168
168
```
169
169
@@ -191,7 +191,7 @@ Now fetch this overlay and put it in the right place.
As mentioned above, a chroot environment will be used to run the actual build process and some other related tasks. To create the chroot environment, run below commands.
202
202
203
203
```
204
-
$ cd /project/chromiumos-R68
204
+
$ cd /project/chromiumos-R70
205
205
$ cros_sdk
206
206
```
207
207
@@ -211,7 +211,7 @@ It make take 10 to over 30 minutes depends on your Internet connection speed and
The chroot environment is located under the ```/project/chromiumos-R68/chroot``` directory.
214
+
The chroot environment is located under the ```/project/chromiumos-R70/chroot``` directory.
215
215
216
216
Let's exit from the chroot first as we need to do some customization before move on. Type ```exit``` or ```Ctrl + D``` to exit from the chroot shell.
217
217
@@ -223,7 +223,7 @@ If you would like to remove the chroot and re-create it from scratch, don't dele
223
223
The correct way to remove the chroot is by using below commands.
224
224
225
225
```
226
-
$ cd /project/chromiumos-R68
226
+
$ cd /project/chromiumos-R70
227
227
$ cros_sdk --delete
228
228
```
229
229
@@ -233,18 +233,18 @@ Programs running inside the chroot will not be able to access files outside of t
233
233
When entering the Chromium OS chroot environment, a file named ```.local_mounts``` will be checked and directories listed in it will be bind mounted inside the chroot. All we need to do is to create this file in the right place and put necessary contents in, by using below command.
Now, after entered the chroot, a ```/project``` directory will exist in the chroot and its content is the same as the ```/project``` directory in the host OS, as it actually is bind mounted from the host OS.
240
240
241
-
If we don't do this, the ```/project/chromiumos-R68/src/overlays/overlay-rpi3``` symbolic link will not be accessible, as the top directory (```/project```) it points to doesn't exist in the chroot.
241
+
If we don't do this, the ```/project/chromiumos-R70/src/overlays/overlay-rpi3``` symbolic link will not be accessible, as the top directory (```/project```) it points to doesn't exist in the chroot.
242
242
243
243
## Enter the chroot
244
244
Now we can enter the chroot.
245
245
246
246
```
247
-
$ cd /project/chromiumos-R68
247
+
$ cd /project/chromiumos-R70
248
248
$ cros_sdk
249
249
```
250
250
@@ -348,7 +348,7 @@ The disk image is usually named ```chromiumos_image.bin```, under abovementioned
0 commit comments