Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TODO: Now using platform "tags", but in reverse | Patrick McDermott | 2021-01-17 | 1 | -5/+0 |
| | |||||
* | TODO: Installer already detects native arch | Patrick McDermott | 2021-01-17 | 1 | -4/+0 |
| | |||||
* | TODO: Already tried replacing sed with eval arrays | Patrick McDermott | 2021-01-17 | 1 | -7/+0 |
| | | | | In commit 7f51f0e82f6f808f01f515a8db80fb28be1bac74. | ||||
* | NEWS: Expand on "prokit install" changes | Patrick McDermott | 2021-01-17 | 1 | -1/+9 |
| | |||||
* | profile_plat_arches(): Clean platform name | Patrick McDermott | 2021-01-16 | 1 | -0/+1 |
| | | | | Fixes error if platform name contains a hyphen. | ||||
* | run_installer(): Detect correct arch for plat | Patrick McDermott | 2021-01-16 | 1 | -5/+12 |
| | |||||
* | profile_plat_arches(): New function | Patrick McDermott | 2021-01-16 | 2 | -1/+12 |
| | |||||
* | NEWS: "prokit mkinitramfs" is gone; add summary | Patrick McDermott | 2021-01-16 | 1 | -3/+9 |
| | |||||
* | profile_make_initramfs(): Remove all but /boot | Patrick McDermott | 2021-01-16 | 1 | -0/+6 |
| | |||||
* | profile_make_initramfs(): Return 0 | Patrick McDermott | 2021-01-16 | 1 | -1/+1 |
| | | | | | This was probably meant as a default case if the kernel is unsupported, but it's the only return statement in the function. | ||||
* | profile_make_initramfs(): Rerun install-lilo | Patrick McDermott | 2021-01-16 | 1 | -0/+4 |
| | |||||
* | Revert "installer/pcramfs: Make RAM FS twice" | Patrick McDermott | 2021-01-16 | 2 | -5/+0 |
| | | | | | | This reverts commit 6e4e840980f3da36b995b0470d18e2e7ecd0a456. This didn't work. | ||||
* | Revert "install_system(): Move dir check to installer" | Patrick McDermott | 2021-01-16 | 3 | -8/+5 |
| | | | | This reverts commit 4ea1459ebbc51e19f7e7e9985db450e521c54681. | ||||
* | Revert "profile_make_initramfs(): Remove all but /boot" | Patrick McDermott | 2021-01-16 | 1 | -12/+1 |
| | | | | This reverts commit 7efef6434e0d4101b04cbce538526c31dcbd8ae2. | ||||
* | profile_make_initramfs(): Remove all but /boot | Patrick McDermott | 2021-01-16 | 1 | -1/+12 |
| | |||||
* | install_system(): Move dir check to installer | Patrick McDermott | 2021-01-16 | 3 | -5/+8 |
| | | | | | | | | | | | | | | Fixes: prokit: Using architecture i686-linux-glibc prokit: Using platform libiquity-testbench prokit: Using mirror http://files.proteanos.com/pub/proteanos prokit: Clearing MBR and partition table... prokit: Creating partition table... prokit: Creating file system... 2 blocks prokit: Setting up root... prokit: Error: Directory "/tmp/prokit-2298865601/mount/block-1684450150" exists | ||||
* | installer/pcramfs: Make RAM FS twice | Patrick McDermott | 2021-01-16 | 2 | -0/+5 |
| | | | | | | | Fixes: Mapping RAM disk /boot/initrd.img Fatal: open /boot/initrd.img: No such file or directory | ||||
* | installer/pcramfs: New installer backend | Patrick McDermott | 2021-01-16 | 2 | -1/+57 |
| | |||||
* | installer/pc: Make functions "public" | Patrick McDermott | 2021-01-16 | 1 | -7/+7 |
| | |||||
* | profile_make_initramfs(): Write RAM FS into system | Patrick McDermott | 2021-01-16 | 1 | -1/+2 |
| | |||||
* | cmd/mkinitramfs: Remove command | Patrick McDermott | 2021-01-16 | 6 | -148/+2 |
| | | | | | | | | Will be replaced by an installer backend. Also, the name "mkINITramfs" (emphasis added) never really made sense here. In ProteanOS, the RAM-based file system is the final file system, not an initial one. | ||||
* | locale: Remove/rename "installer-pc" cmd strings | Patrick McDermott | 2021-01-16 | 2 | -18/+15 |
| | |||||
* | NEWS: Update copyright years | Patrick McDermott | 2021-01-16 | 1 | -1/+1 |
| | |||||
* | NEWS, configure.ac: Set version to 3.0.0 | Patrick McDermott | 2021-01-16 | 2 | -2/+2 |
| | | | | | The command-line interface has changed in an incompatible way ("installer-pc" was removed). | ||||
* | cmd/installer-pc: Remove distinct command | Patrick McDermott | 2021-01-16 | 6 | -219/+3 |
| | |||||
* | cmd/install: Use installer backends | Patrick McDermott | 2021-01-16 | 2 | -40/+6 |
| | |||||
* | installer/pc: New installer backend | Patrick McDermott | 2021-01-16 | 2 | -1/+108 |
| | |||||
* | installer/chroot: New installer backend | Patrick McDermott | 2021-01-16 | 3 | -0/+40 |
| | | | | This installer doesn't support installing to a block device. | ||||
* | installer: Add installer backend frontend | Patrick McDermott | 2021-01-16 | 3 | -1/+84 |
| | |||||
* | install_find_pkgs(): Drop unnecessary parameters | Patrick McDermott | 2021-01-16 | 1 | -8/+5 |
| | |||||
* | profile: Simplify function parameters | Patrick McDermott | 2021-01-16 | 2 | -30/+27 |
| | | | | | Save mirror and suite arguments in profile_prepare_install(), then use them in other profile functions. | ||||
* | profile_prepare_install(): New function | Patrick McDermott | 2021-01-16 | 3 | -24/+21 |
| | | | | | | | | | | profile_installer_type() will be the first caller of _prof_proteanos_get_platforms() to be called, but it will be called in a subshell. As a result, _prof_proteanos_get_platforms() would be called twice. To solve this, factor out _prof_proteanos_get_platforms() calls from other functions, making them pure (subshell-safe). | ||||
* | profile_installer_type(): New function | Patrick McDermott | 2021-01-16 | 2 | -3/+24 |
| | |||||
* | profile/proteanos: Use archive's Platforms file | Patrick McDermott | 2021-01-16 | 2 | -28/+74 |
| | |||||
* | cmd/build: Fix AND-OR list logic | Patrick McDermott | 2021-01-13 | 1 | -2/+4 |
| | |||||
* | cmd/build: List installed pkgs only if logging | Patrick McDermott | 2021-01-13 | 1 | -1/+1 |
| | |||||
* | locale/C: Update header comment | Patrick McDermott | 2021-01-13 | 1 | -1/+1 |
| | |||||
* | locale: Add C and POSIX locales | Patrick McDermott | 2021-01-13 | 5 | -146/+152 |
| | |||||
* | cmd/build: Don't print build info if not logging | Patrick McDermott | 2021-01-12 | 1 | -18/+26 |
| | |||||
* | cmd/build: Allow logging to be disabled | Patrick McDermott | 2021-01-12 | 2 | -25/+33 |
| | |||||
* | cmd/build: Improve option handling | Patrick McDermott | 2021-01-12 | 1 | -11/+25 |
| | |||||
* | cmd/build: List built files | Patrick McDermott | 2021-01-04 | 1 | -2/+5 |
| | | | | | This makes use of the extra space between the "Build Results" and "*.changes" headers. | ||||
* | cmd/build: Also filter session ID in log | Patrick McDermott | 2021-01-04 | 1 | -3/+6 |
| | |||||
* | cmd/build: Filter session directory in log | Patrick McDermott | 2021-01-04 | 1 | -1/+4 |
| | | | | | As in sbuild (>= 0.62.0-1, Debian bug #605763), filtering makes build logs comparable with diff. | ||||
* | cmd/build: Add more information to build log | Patrick McDermott | 2021-01-04 | 2 | -6/+106 |
| | |||||
* | package_get_name_and_version(): Also get dist | Patrick McDermott | 2021-01-04 | 3 | -6/+7 |
| | |||||
* | cmd/build: Fix redirection syntax error | Patrick McDermott | 2021-01-04 | 2 | -6/+4 |
| | | | | | | Fixes: src/cmd/build.sh: 199: src/cmd/build.sh: Syntax error: word unexpected (expecting "}") | ||||
* | cmd/build: Log output | Patrick McDermott | 2021-01-04 | 2 | -1/+26 |
| | |||||
* | fdalloc(): New function | Patrick McDermott | 2021-01-04 | 1 | -15/+24 |
| | |||||
* | cmd/build: Factor out interesting parts | Patrick McDermott | 2021-01-03 | 1 | -19/+32 |
| |