ソースを参照

Add PC Engines APU as a build target

Bob Mottram 8 年 前
コミット
fa555ce44b
共有3 個のファイルを変更した13 個の追加1 個の削除を含む
  1. 2
    1
      README.md
  2. バイナリ
      man/freedombone-image.1.gz
  3. 11
    0
      src/freedombone-image-makefile

+ 2
- 1
README.md ファイルの表示

53
 
53
 
54
     freedombone-image -t qemu-x86_64 -s 8G
54
     freedombone-image -t qemu-x86_64 -s 8G
55
 
55
 
56
-Other supported boards are cubieboard2, cubietruck, olinuxino-lime, olinuxino-lime2 and olinuxino-micro.
56
+Other supported boards are cubieboard2, cubietruck, olinuxino-lime, olinuxino-lime2, olinuxino-micro and PC Engines APU.
57
 
57
 
58
 If the image build fails with an error such as "/Error reading from server. Remote end closed connection/" then you can specify a debian package mirror repository manually with:
58
 If the image build fails with an error such as "/Error reading from server. Remote end closed connection/" then you can specify a debian package mirror repository manually with:
59
 
59
 
94
     Cubietruck (Cubieboard 3)
94
     Cubietruck (Cubieboard 3)
95
     olinuxino Lime2
95
     olinuxino Lime2
96
     olinuxino Micro
96
     olinuxino Micro
97
+    PC Engines APU
97
 
98
 
98
 If there is no existing image available then you can build one from scratch. See the section above on how to do that. If an existing image is available then you can download it and check the signature with:
99
 If there is no existing image available then you can build one from scratch. See the section above on how to do that. If an existing image is available then you can download it and check the signature with:
99
 
100
 

バイナリ
man/freedombone-image.1.gz ファイルの表示


+ 11
- 0
src/freedombone-image-makefile ファイルの表示

177
 	$(SIGN)
177
 	$(SIGN)
178
 	@echo "Build complete."
178
 	@echo "Build complete."
179
 
179
 
180
+# build an PC Engines APU image
181
+apu: prep
182
+	$(eval ARCHITECTURE = amd64)
183
+	$(eval MACHINE = all)
184
+	$(MAKE_IMAGE)
185
+	@rm -f $(ARCHIVE)
186
+	$(XZ) $(IMAGE)
187
+	@echo ""
188
+	$(SIGN)
189
+	@echo "Build complete."
190
+
180
 # build a virtualbox image
191
 # build a virtualbox image
181
 virtualbox: virtualbox-i386
192
 virtualbox: virtualbox-i386
182
 
193