diff options
author | Joursoir <chat@joursoir.net> | 2021-10-07 20:36:03 +0000 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-10-07 20:36:24 +0000 |
commit | 2a6743666345e6a9d4452533efdc75ba143d0869 (patch) | |
tree | 4941f83ae28bef16448519096445532b8dcd185d | |
parent | 9e9af2e1f21c20221e87400c9ee2e97914a7070f (diff) | |
download | mfsos-2a6743666345e6a9d4452533efdc75ba143d0869.tar.gz mfsos-2a6743666345e6a9d4452533efdc75ba143d0869.tar.bz2 mfsos-2a6743666345e6a9d4452533efdc75ba143d0869.zip |
make: increase a zero space after the kernel to 65536 bytes
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ all: $(OSBIN) $(OSBIN): $(BOOTBIN) $(KERNBIN) cat $^ > $@ - dd if=/dev/zero bs=512 count=15 >> $@ + dd if=/dev/zero bs=512 count=128 >> $@ # 65536 $(BOOTBIN): $(MAKE) -C $(ARCH_BOOT) |