• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

bootable/newinstaller


RSS
Rev. Time Author
f02afb9 pie-x86 2020-06-08 09:49:55 Mauro Rossi

add new Debug options for troubleshooting

75a02cb 2020-05-13 18:27:27 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

a1e5449 oreo-x86 android-x86-8.1-r5 2020-05-13 14:25:11 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

0da684c nougat-x86 android-x86-7.1-r4 2020-05-13 14:24:32 Chih-Wei Huang

1-install: update symlink if the linked dir is upgraded

e890de4 2020-05-13 00:09:26 Chih-Wei Huang

init: fall back to busybox's shell

Run busybox's shell if AOSP's shell fails to run. This makes
debug shell more reliable.

3119e2f 2020-05-12 23:55:22 Chih-Wei Huang

init: do not keep initrd's busybox in debug mode

Keeping initrd's busybox in debug mode is an old feature before we added
busybox porting to Android-x86. But it introduced some inconsistencies
between debug and normal modes. Moreover, it depends on AOSP's tool (ln)
to work properly. In case the tool fails to run, the system may not boot.

In short, the feature does more harm than good. Let's remove it from
debug mode. Only keep it if BUSYBOX=1 is set in cmdline.

0cf7926 2020-05-07 01:24:27 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

419460a 2020-05-07 01:10:18 Chih-Wei Huang

1-install: move try_upgrade to an earlier step

The try_upgrade should be run before checking whether system
was installed as the read-write mode.

75a6d35 2020-05-07 00:36:49 Chih-Wei Huang

0-auto-detect: fix parsing error if aliases contain brackets

7383df1 android-x86-9.0-r2 2020-03-13 12:44:32 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

Conflicts:
Android.mk

d68f8f8 android-x86-8.1-r4 2020-03-13 12:42:08 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

6b5590f 2020-03-13 12:36:21 Chih-Wei Huang

init: avoid finding system dir too aggressive

Only use a system dir if it contains build.prop.

0f1d057 2020-03-13 01:17:10 Chih-Wei Huang

Use isohybrid in AOSP's tree

This removes the dependency of an external host tool.

1d57cfe android-x86-9.0-r1 2019-12-11 15:43:42 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

bb2fb8c 2019-12-11 15:43:08 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

508328d 2019-12-11 15:37:24 Chih-Wei Huang

1-install: fix inconsistent alignment

603f82f 2019-12-03 11:42:25 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

5e28e0b 2019-12-03 11:40:32 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

d1843f3 2019-12-03 11:33:38 Chih-Wei Huang

init: set SRC=iso earlier

If iso-scan/filename is set in cmdline, SRC should be set earlier to
avoid misuse of other partitions.

fcce744 2019-12-02 19:48:00 Chih-Wei Huang

init: avoid finding system partition too aggressive

If SRC is specified, do not use a system-like partition. This avoids
misuse.

11101b9 2019-11-22 18:54:58 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

Conflicts:
Android.mk

85510fc 2019-11-22 18:44:22 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

347a825 2019-11-22 18:42:35 Chih-Wei Huang

Add version and arch to volume ID of the iso

It's suggested by the maintainer of libosinfo.

To avoid the volume ID too long, remove 'LiveCD' suffix.

885a4ea 2019-11-07 15:35:52 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

fcae0cb android-x86-8.1-r3 2019-10-30 13:19:51 Chih-Wei Huang

1-install: avoid unnecessary errors from cp

Since ESP is a vfat partition, we cannot preserve attributes from ext4.

fe7a5f6 2019-10-05 19:37:18 Chih-Wei Huang

Use isohybrid.pl in AOSP's tree

This removes the dependency of an external host tool.

a67c503 2019-07-19 13:32:54 Chih-Wei Huang

Merge remote-tracking branch 'x86/oreo-x86' into pie-x86

7d85907 2019-07-19 13:31:13 Chih-Wei Huang

Merge remote-tracking branch 'x86/nougat-x86' into oreo-x86

15b7d40 android-x86-7.1-r3 2019-07-19 13:25:57 Chih-Wei Huang

lndir: set permission, owner, group of destination dir

Set them to be the same as the source dir if runs by root.

f6e9dfc 2019-07-10 13:33:34 Chih-Wei Huang

1-install: replace make_ext4fs by mkfs.ext4

The make_ext4fs was removed in Android 9.

Due to unknown reason, TrustedGRUB can't be installed to the ext4
filesystem created by mkfs.ext4. So we format it as ext3 and then
convert it to ext4. This way works luckily.