Bash 4.2.0(1)-release, which we use during bootstrap, does not yield the "x" case in: case x"$EMULATION_NAME" in x) ;; *) ;; esac when 'EMULATION_NAME' is undefined. Bash 4.3.30(1)-release doesn't have this problem. Work around it. This Bash bug was fixed in . --- a/ld/emulparams/elf32bmipn32-defs.sh +++ b/ld/emulparams/elf32bmipn32-defs.sh @@ -13,7 +13,7 @@ LITTLE_OUTPUT_FORMAT="elf32-littlemips" TEMPLATE_NAME=elf32 EXTRA_EM_FILE=mipself -case x"$EMULATION_NAME" in +case "x$EMULATION_NAME" in xelf32*n32*) ELFSIZE=32 ;; xelf64*) ELFSIZE=64 ;; x) ;; 8a4975c720c4cce2caa9f37de'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/doc/images
AgeCommit message (Expand)Author
2020-05-22doc: Update 'Bootstrapping' for further binary seed reduction....* doc/images/gcc-core-mesboot0-graph.dot: New image, replacing * doc/images/gcc-mesboot0-bag-graph.dot: ... remove file. * doc/local.mk (DOT_FILES): Update for new image file. * doc/guix.texi (Reduced Binary Seed Bootstrap): Use it in updated description of further reduction of the trusted computing base. Jan Nieuwenhuizen
2019-03-14Merge branch 'staging' into core-updatesMarius Bakke
2019-03-13doc: Document the graphical installer some more....* doc/guix.texi (Preparing for Installation): Rewrite to specify the two installation modes. (Guided Graphical Installation): New node. (Manual Installation): New node, with the former sections. (After System Installation): New node. * doc/images/installer-network.png, doc/images/installer-partitions.png, doc/images/installer-resume.png: New files. * doc/local.mk (dist_infoimage_DATA): Add them. Ludovic Courtès
2018-12-16doc: Update mesboot graph without bootstrap-guile....* doc/images/gcc-mesboot-bag-graph.dot: Update. Jan Nieuwenhuizen
2018-11-24doc: Update for bootstrap-mescc-tools change....* doc/guix.texi (Reduced Binary Seed Bootstrap): Update for bootstrap-mescc-tools change. * doc/images/gcc-mesboot-bag-graph.dot: Regenerate. Jan Nieuwenhuizen
2018-09-23doc: Describe the Reduced Binary Seed bootstrap....* doc/guix.texi (Reduced Binary Seed Bootstrap): New node. * doc/images/gcc-mesboot-bag-graph.dot: New file. * doc/local.mk (DOT_FILES): Add it. Jan Nieuwenhuizen