Add all recipes to filesystem.toml, commented out where not default.
Update cookbook Increase VirtualBox RAM, use Intel HDA for audio
This commit is contained in:
parent
dc7f89cb22
commit
88800adc26
2
cookbook
2
cookbook
|
@ -1 +1 @@
|
||||||
Subproject commit 287883e58e28ee6596345d82002897ac12574dad
|
Subproject commit 20db74be75c121814528c597a57e72cd94904376
|
|
@ -12,14 +12,19 @@ sysroot = "build/filesystem"
|
||||||
#binutils = {}
|
#binutils = {}
|
||||||
contain = {}
|
contain = {}
|
||||||
coreutils = {}
|
coreutils = {}
|
||||||
|
#dash = {}
|
||||||
extrautils = {}
|
extrautils = {}
|
||||||
#games = {}
|
#games = {}
|
||||||
|
#gcc = {}
|
||||||
|
#gnu-binutils = {}
|
||||||
|
#gnu-make = {}
|
||||||
init = {}
|
init = {}
|
||||||
installer = {}
|
installer = {}
|
||||||
ion = {}
|
ion = {}
|
||||||
#lua = {}
|
#lua = {}
|
||||||
netstack = {}
|
netstack = {}
|
||||||
netutils = {}
|
netutils = {}
|
||||||
|
#newlib = {}
|
||||||
orbdata = {}
|
orbdata = {}
|
||||||
orbital = {}
|
orbital = {}
|
||||||
orbterm = {}
|
orbterm = {}
|
||||||
|
@ -29,6 +34,7 @@ pkgutils = {}
|
||||||
ptyd = {}
|
ptyd = {}
|
||||||
randd = {}
|
randd = {}
|
||||||
redoxfs = {}
|
redoxfs = {}
|
||||||
|
#rust = {}
|
||||||
smith = {}
|
smith = {}
|
||||||
#sodium = {}
|
#sodium = {}
|
||||||
userutils = {}
|
userutils = {}
|
||||||
|
|
|
@ -15,8 +15,8 @@ virtualbox: build/harddrive.bin
|
||||||
echo "Create VM"
|
echo "Create VM"
|
||||||
$(VBM) createvm --name Redox --register
|
$(VBM) createvm --name Redox --register
|
||||||
echo "Set Configuration"
|
echo "Set Configuration"
|
||||||
$(VBM) modifyvm Redox --memory 1024
|
$(VBM) modifyvm Redox --memory 2048
|
||||||
$(VBM) modifyvm Redox --vram 16
|
$(VBM) modifyvm Redox --vram 32
|
||||||
if [ "$(net)" != "no" ]; \
|
if [ "$(net)" != "no" ]; \
|
||||||
then \
|
then \
|
||||||
$(VBM) modifyvm Redox --nic1 nat; \
|
$(VBM) modifyvm Redox --nic1 nat; \
|
||||||
|
@ -31,7 +31,7 @@ virtualbox: build/harddrive.bin
|
||||||
$(VBM) modifyvm Redox --keyboard ps2
|
$(VBM) modifyvm Redox --keyboard ps2
|
||||||
$(VBM) modifyvm Redox --mouse ps2
|
$(VBM) modifyvm Redox --mouse ps2
|
||||||
$(VBM) modifyvm Redox --audio $(VB_AUDIO)
|
$(VBM) modifyvm Redox --audio $(VB_AUDIO)
|
||||||
$(VBM) modifyvm Redox --audiocontroller ac97
|
$(VBM) modifyvm Redox --audiocontroller hda
|
||||||
$(VBM) modifyvm Redox --nestedpaging on
|
$(VBM) modifyvm Redox --nestedpaging on
|
||||||
echo "Create Disk"
|
echo "Create Disk"
|
||||||
$(VBM) convertfromraw $< build/harddrive.vdi
|
$(VBM) convertfromraw $< build/harddrive.vdi
|
||||||
|
|
Loading…
Reference in a new issue