summaryrefslogtreecommitdiff
path: root/open_issues
diff options
context:
space:
mode:
Diffstat (limited to 'open_issues')
-rw-r--r--open_issues/64-bit_port.mdwn6
-rw-r--r--open_issues/arm_port.mdwn50
-rw-r--r--open_issues/serverbootv2.mdwn6
-rw-r--r--open_issues/smp.mdwn6
4 files changed, 27 insertions, 41 deletions
diff --git a/open_issues/64-bit_port.mdwn b/open_issues/64-bit_port.mdwn
index a5d206e5..b85d95de 100644
--- a/open_issues/64-bit_port.mdwn
+++ b/open_issues/64-bit_port.mdwn
@@ -171,10 +171,8 @@ For now it's quite empty (not even gcc), but it can be debootstrapped. That will
The `people.debian.org` repository is only for bootstraping the distribution. Proper packages are getting uploaded on the usual mirror:
-```
-deb http://deb.debian.org/debian-ports sid main
-deb http://deb.debian.org/debian-ports unreleased main
-```
+ deb http://deb.debian.org/debian-ports sid main
+ deb http://deb.debian.org/debian-ports unreleased main
**Installing a 64bit system**
diff --git a/open_issues/arm_port.mdwn b/open_issues/arm_port.mdwn
index 88ef0e9c..cc33b074 100644
--- a/open_issues/arm_port.mdwn
+++ b/open_issues/arm_port.mdwn
@@ -413,45 +413,37 @@ Copy dt.dtb, gnumach, gnumach-tracing and all modules on the sd
card. The tracing version of gnumach is obtained by cherrypicking the
relative commit in a gnumach tree and rebuilding gnumach:
-```
-git cherry-pick ee177f52680116538192b2c0c5d9a08e174c007f
-```
+ git cherry-pick ee177f52680116538192b2c0c5d9a08e174c007f
Create the file boot.cmd on the smartcard:
-```
-if itest $trace != 0; then load mmc 0:1 0x42000000 gnumach-tracing; else load mmc 0:1 0x42000000 gnumach; fi
-load mmc 0:1 0x60000000 $module
-load mmc 0:1 0x42200000 dt.dtb
-
-fdt addr 0x42200000
-fdt resize
-fdt set /chosen bootargs "foo=bar"
-fdt set /chosen \#address-cells <0x2>
-fdt set /chosen \#size-cells <0x2>
-fdt mknod /chosen module@0x60000000
-fdt set /chosen/module@0x60000000 compatible "multiboot,kernel" "multiboot,module"
-fdt set /chosen/module@0x60000000 reg <0x0 0x60000000 0x0 0x04000000>
-fdt set /chosen/module@0x60000000 bootargs "$module "'${host-port}
-${device-port} $(task-create) $(task-resume)'
-
-booti 0x42000000 - 0x42200000
-```
+ if itest $trace != 0; then load mmc 0:1 0x42000000 gnumach-tracing; else load mmc 0:1 0x42000000 gnumach; fi
+ load mmc 0:1 0x60000000 $module
+ load mmc 0:1 0x42200000 dt.dtb
+
+ fdt addr 0x42200000
+ fdt resize
+ fdt set /chosen bootargs "foo=bar"
+ fdt set /chosen \#address-cells <0x2>
+ fdt set /chosen \#size-cells <0x2>
+ fdt mknod /chosen module@0x60000000
+ fdt set /chosen/module@0x60000000 compatible "multiboot,kernel" "multiboot,module"
+ fdt set /chosen/module@0x60000000 reg <0x0 0x60000000 0x0 0x04000000>
+ fdt set /chosen/module@0x60000000 bootargs "$module "'${host-port}
+ ${device-port} $(task-create) $(task-resume)'
+
+ booti 0x42000000 - 0x42200000
Compile it with:
-```
-mkimage -C none -A arm -T script -d boot.cmd boot.scr
-```
+ mkimage -C none -A arm -T script -d boot.cmd boot.scr
Boot into Das u-boot, interrupt automatic booting to set the variables
before:
-```
-trace=0
-module=module-hello
-boot
-```
+ trace=0
+ module=module-hello
+ boot
modify trace to a different number to start the version of gnumach
compiled with tracing.
diff --git a/open_issues/serverbootv2.mdwn b/open_issues/serverbootv2.mdwn
index 60507fab..21a2f3ec 100644
--- a/open_issues/serverbootv2.mdwn
+++ b/open_issues/serverbootv2.mdwn
@@ -225,10 +225,8 @@ pci-arbiter.
`rumpdisk` exposes `/dev/rumpdisk`:
-```
-$ showtrans /dev/rumpdisk
- /hurd/rumpdisk
-```
+ $ showtrans /dev/rumpdisk
+ /hurd/rumpdisk
# FAQ
diff --git a/open_issues/smp.mdwn b/open_issues/smp.mdwn
index 0be706e3..9820f561 100644
--- a/open_issues/smp.mdwn
+++ b/open_issues/smp.mdwn
@@ -69,10 +69,8 @@ and add `console=com0`
update `/etc/fstab` and update `wd0` instead of `hd0`.
-```
-/dev/wd0s2 / ext2 defaults 0 1
-/dev/wd0s1 none swap sw 0 0
-```
+ /dev/wd0s2 / ext2 defaults 0 1
+ /dev/wd0s1 none swap sw 0 0
You can shutdown via `/sbin/poweroff`.